@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | */ |
| 43 | 43 | public function __construct($app) |
| 44 | 44 | { |
| 45 | - if (! isset($this->name, $this->nameLower)) { |
|
| 45 | + if (!isset($this->name, $this->nameLower)) { |
|
| 46 | 46 | throw new \LogicException('Module service provider must define both $name and $nameLower properties.'); |
| 47 | 47 | } |
| 48 | 48 | |
@@ -85,11 +85,11 @@ discard block |
||
| 85 | 85 | */ |
| 86 | 86 | protected function registerCommandSchedules(): void |
| 87 | 87 | { |
| 88 | - if (! method_exists($this, 'configureSchedules')) { |
|
| 88 | + if (!method_exists($this, 'configureSchedules')) { |
|
| 89 | 89 | return; |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - $this->app->booted(function () { |
|
| 92 | + $this->app->booted(function() { |
|
| 93 | 93 | $schedule = $this->app->make(Schedule::class); |
| 94 | 94 | $this->configureSchedules($schedule); |
| 95 | 95 | }); |