Completed
Push — master ( 07a5be...84fb3c )
by Charles
01:34
created
commands/WorkerController.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     /**
24 24
      * Command line options
25 25
      * @param string $actionID
26
-     * @return array
26
+     * @return string[]
27 27
      */
28 28
     public function options($actionID)
29 29
     {
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace app\commands;
4 4
 
5
-use Exception;
6
-use yii\console\Controller;
5
+use Exception;
6
+use yii\console\Controller;
7 7
 use Yii;
8 8
 
9 9
 final class WorkerController extends Controller
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace app\commands;
4 4
 
Please login to merge, or discard this patch.
config/common.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
     'id' => $yaml['app']['id'],
9 9
     'name' => $yaml['app']['name'],
10 10
     'basePath' => dirname(__DIR__),
11
-    'bootstrap' => [ 'log' ],
11
+    'bootstrap' => ['log'],
12 12
     'language' => 'en-US',
13 13
     'sourceLanguage' => 'en-US',
14 14
     'components' => [
Please login to merge, or discard this patch.