@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | abstract function executeAction($name); |
41 | 41 | |
42 | - public function getInfo(): string|null |
|
42 | + public function getInfo(): string | null |
|
43 | 43 | { |
44 | 44 | return NULL; |
45 | 45 | } |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public function handle() |
51 | 51 | { |
52 | - if (! is_null($info = $this->getInfo())) { |
|
52 | + if (!is_null($info = $this->getInfo())) { |
|
53 | 53 | $this->components->info($info); |
54 | 54 | } |
55 | 55 | |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | return; |
70 | 70 | } |
71 | 71 | |
72 | - if (! empty($input->getArgument('module'))) { |
|
72 | + if (!empty($input->getArgument('module'))) { |
|
73 | 73 | return; |
74 | 74 | } |
75 | 75 |
@@ -24,12 +24,12 @@ |
||
24 | 24 | { |
25 | 25 | $module = $this->getModuleModel($name); |
26 | 26 | |
27 | - $this->components->task("Forget Using {$module->getName()} module", function () use ($module) { |
|
27 | + $this->components->task("Forget Using {$module->getName()} module", function() use ($module) { |
|
28 | 28 | $this->laravel['modules']->forgetUsed($module); |
29 | 29 | }); |
30 | 30 | } |
31 | 31 | |
32 | - function getInfo(): string|null |
|
32 | + function getInfo(): string | null |
|
33 | 33 | { |
34 | 34 | return 'Forget Using Module ...'; |
35 | 35 | } |
@@ -22,12 +22,12 @@ |
||
22 | 22 | { |
23 | 23 | $module = $this->getModuleModel($name); |
24 | 24 | |
25 | - $this->components->task("Using {$module->getName()} module", function () use ($module) { |
|
25 | + $this->components->task("Using {$module->getName()} module", function() use ($module) { |
|
26 | 26 | $this->laravel['modules']->setUsed($module); |
27 | 27 | }); |
28 | 28 | } |
29 | 29 | |
30 | - function getInfo(): string|null |
|
30 | + function getInfo(): string | null |
|
31 | 31 | { |
32 | 32 | return 'Using Module ...'; |
33 | 33 | } |