summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/Command/Applicable.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/lib/Command/Applicable.php')
-rw-r--r--apps/files_external/lib/Command/Applicable.php19
1 files changed, 4 insertions, 15 deletions
diff --git a/apps/files_external/lib/Command/Applicable.php b/apps/files_external/lib/Command/Applicable.php
index 29d5459200e..a3708602dff 100644
--- a/apps/files_external/lib/Command/Applicable.php
+++ b/apps/files_external/lib/Command/Applicable.php
@@ -36,20 +36,9 @@ use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class Applicable extends Base {
- /**
- * @var GlobalStoragesService
- */
- protected $globalService;
-
- /**
- * @var IUserManager
- */
- private $userManager;
-
- /**
- * @var IGroupManager
- */
- private $groupManager;
+ protected GlobalStoragesService $globalService;
+ private IUserManager $userManager;
+ private IGroupManager $groupManager;
public function __construct(
GlobalStoragesService $globalService,
@@ -62,7 +51,7 @@ class Applicable extends Base {
$this->groupManager = $groupManager;
}
- protected function configure() {
+ protected function configure(): void {
$this
->setName('files_external:applicable')
->setDescription('Manage applicable users and groups for a mount')