Completed
Pull Request — master (#2115)
by
unknown
06:29
created
src/Support/ModuleServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         });
Please login to merge, or discard this patch.