Expose isCLI to DI
This allows apps/backgroundjobs to find out if they are run from the CLI or not. Some apps/backgroundjobs might do more if they are not at risk of timing out. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
9fe95e8a7c
commit
c37bc4fdf9
|
@ -164,6 +164,9 @@ class Server extends ServerContainer implements IServerContainer {
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
$this->webRoot = $webRoot;
|
$this->webRoot = $webRoot;
|
||||||
|
|
||||||
|
// To find out if we are running from CLI or not
|
||||||
|
$this->registerParameter('isCLI', \OC::$CLI);
|
||||||
|
|
||||||
$this->registerService(\OCP\IServerContainer::class, function (IServerContainer $c) {
|
$this->registerService(\OCP\IServerContainer::class, function (IServerContainer $c) {
|
||||||
return $c;
|
return $c;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue