Passed
Push — develop ( 86d31c...191f96 )
by nguereza
03:18
created
src/Task/Scheduler.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -150,8 +150,8 @@
 block discarded – undo
150 150
             $task->run();
151 151
         } catch (Throwable $e) {
152 152
             $this->logger->error('Error occurred when execute task {task}, error: {error}', [
153
-               'task' => $task->name(),
154
-               'error' => $e->getMessage()
153
+                'task' => $task->name(),
154
+                'error' => $e->getMessage()
155 155
             ]);
156 156
         }
157 157
     }
Please login to merge, or discard this patch.
src/Task/Command/SchedulerListCommand.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         parent::__construct($scheduler, $application, $config);
74 74
 
75 75
         $this->setName('scheduler:list')
76
-             ->setDescription('Show the list of scheduled tasks');
76
+                ->setDescription('Show the list of scheduled tasks');
77 77
     }
78 78
 
79 79
     /**
Please login to merge, or discard this patch.
src/Task/Command/SchedulerRunCommand.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
         parent::__construct($scheduler, $application, $config);
73 73
 
74 74
         $this->setName('scheduler:run')
75
-             ->setDescription('Execute the scheduled tasks');
75
+                ->setDescription('Execute the scheduled tasks');
76 76
 
77 77
         $this->addArgument('name', 'the name of task to execute instead of all', null, false, true);
78 78
     }
Please login to merge, or discard this patch.