Test Failed
Push — master ( e27e96...62a61a )
by Chubarov
05:17
created
src/Http/Controllers/DashboardController.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     public function formColumn()
80 80
     {
81 81
         $forms = [
82
-           'date' =>  [
82
+            'date' =>  [
83 83
                 'label' => trans('postman::dashboard.date'),
84 84
                 'rule' => [
85 85
                     'required'=> true, 'message'=> 'Please input Activity name', 'trigger'=> 'blur',
@@ -99,21 +99,21 @@  discard block
 block discarded – undo
99 99
                 'label' => trans('postman::dashboard.users.name'),
100 100
                 'placeholder' => trans('postman::dashboard.users.placeholder'),
101 101
             ],
102
-           'statuses' => [
103
-               'label' => trans('postman::dashboard.statuses.name'),
104
-               'placeholder' => trans('postman::dashboard.statuses.placeholder'),
105
-           ],
102
+            'statuses' => [
103
+                'label' => trans('postman::dashboard.statuses.name'),
104
+                'placeholder' => trans('postman::dashboard.statuses.placeholder'),
105
+            ],
106 106
             'button' => [
107 107
                 'success' => trans('postman::dashboard.form.button.success'),
108 108
                 'cancel' => trans('postman::dashboard.form.button.cancel'),
109 109
             ],
110 110
             'popup' => [
111
-              'question' => trans('postman::dashboard.popup.question'),
112
-              'title' => trans('postman::dashboard.popup.title'),
113
-              'confirmButtonText' => trans('postman::dashboard.popup.confirmButtonText'),
114
-              'cancelButtonText' => trans('postman::dashboard.popup.cancelButtonText'),
115
-              'success.message' => trans('postman::dashboard.popup.success.message'),
116
-              'info.message' => trans('postman::dashboard.popup.info.message'),
111
+                'question' => trans('postman::dashboard.popup.question'),
112
+                'title' => trans('postman::dashboard.popup.title'),
113
+                'confirmButtonText' => trans('postman::dashboard.popup.confirmButtonText'),
114
+                'cancelButtonText' => trans('postman::dashboard.popup.cancelButtonText'),
115
+                'success.message' => trans('postman::dashboard.popup.success.message'),
116
+                'info.message' => trans('postman::dashboard.popup.info.message'),
117 117
             ],
118 118
         ];
119 119
 
Please login to merge, or discard this patch.
resources/lang/ru/statuses.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 return [
3
-   [
4
-       'name' => 'В процессе',
5
-       'description' => 'Это задача находится в процессе',
6
-       'color_rgb' => '#c9e5f5'
7
-   ],
3
+    [
4
+        'name' => 'В процессе',
5
+        'description' => 'Это задача находится в процессе',
6
+        'color_rgb' => '#c9e5f5'
7
+    ],
8 8
     [
9 9
         'name' => 'Выполнена',
10 10
         'description' => 'Эта задача закончена.',
Please login to merge, or discard this patch.
resources/lang/en/statuses.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 return [
3
-   [
4
-       'name' => 'In process',
5
-       'description' => 'This task is in the process',
6
-       'color_rgb' => '#c9e5f5'
7
-   ],
3
+    [
4
+        'name' => 'In process',
5
+        'description' => 'This task is in the process',
6
+        'color_rgb' => '#c9e5f5'
7
+    ],
8 8
     [
9 9
         'name' => 'Done',
10 10
         'description' => 'It is the task finished',
Please login to merge, or discard this patch.