/**
* @return App[]
*/
public function getActiveApps(): array
{ if (EnvironmentHelper::
getVariable('DISABLE_EXTENSIONS', false
)) { return [];
} if ($this->activeApps === null
) { $this->activeApps =
$this->
loadApps();
} return $this->activeApps;
} public function reset(): void
{ $this->activeApps = null;
} /**
* @return App[]
*/