mirror of
https://github.com/nextcloud/server.git
synced 2026-06-13 10:40:40 -04:00
fix PHP 7.3 compat
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
5c757f31e1
commit
f955faba1c
1 changed files with 5 additions and 2 deletions
|
|
@ -43,8 +43,11 @@ class Manager implements IManager {
|
|||
/** @var IWidget[] */
|
||||
private $widgets = [];
|
||||
|
||||
private ContainerInterface $serverContainer;
|
||||
private ?IAppManager $appManager = null;
|
||||
/** @var ContainerInterface */
|
||||
private $serverContainer;
|
||||
|
||||
/** @var ?IAppManager */
|
||||
private $appManager = null;
|
||||
|
||||
public function __construct(ContainerInterface $serverContainer) {
|
||||
$this->serverContainer = $serverContainer;
|
||||
|
|
|
|||
Loading…
Reference in a new issue