Passed
Push — master ( 147acf...e64e78 )
by Paweł
02:39
created
config/container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 return [
4 4
     'definitions' => [
5 5
         \yii\behaviors\TimestampBehavior::class => [
6
-            'value' => function () {
6
+            'value' => function() {
7 7
                 return (new DateTime('now', new DateTimeZone('UTC')))->format('Y-m-d H:i:s');
8 8
             },
9 9
         ],
Please login to merge, or discard this patch.
modules/admin/views/account/dashboard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
                                     [
169 169
                                         'label' => $model->lastAccountStats->getAttributeLabel('er'),
170 170
                                         'yAxisID' => 'er',
171
-                                        'data' => array_map(function ($item) {
171
+                                        'data' => array_map(function($item) {
172 172
                                             return number_format($item * 100, 2);
173 173
                                         }, ArrayHelper::getColumn($dailyStatsData, 'er')),
174 174
                                         'fill' => false,
Please login to merge, or discard this patch.
views/preview/account.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
                                     [
169 169
                                         'label' => $model->lastAccountStats->getAttributeLabel('er'),
170 170
                                         'yAxisID' => 'er',
171
-                                        'data' => array_map(function ($item) {
171
+                                        'data' => array_map(function($item) {
172 172
                                             return number_format($item * 100, 2);
173 173
                                         }, ArrayHelper::getColumn($dailyStatsData, 'er')),
174 174
                                         'fill' => false,
Please login to merge, or discard this patch.