Test Failed
Push — master ( dc3eb8...ff59dd )
by Alexey
04:20
created
system/modules/Ecommerce/migrations/cdekCities.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 return [
4 4
     'up' => function () {
5
-        \Ecommerce\Delivery\Field\Item::get(1,'data');
5
+        \Ecommerce\Delivery\Field\Item::get(1, 'data');
6 6
         $field = new \Ecommerce\Delivery\Field(
7 7
             [
8 8
                 'name' => 'Город',
Please login to merge, or discard this patch.
system/Inji/Model.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -513,13 +513,13 @@
 block discarded – undo
513 513
                     case 'to':
514 514
                         $relCol = $relations[$rel]['col'];
515 515
                         static::fixPrefix($relCol);
516
-                        $rootModel::$relJoins[$joinName] = [$relations[$rel]['model']::table(), $relations[$rel]['model']::index() . ' = ' . $relCol, 'left',''];
516
+                        $rootModel::$relJoins[$joinName] = [$relations[$rel]['model']::table(), $relations[$rel]['model']::index() . ' = ' . $relCol, 'left', ''];
517 517
                         break;
518 518
                     case 'one':
519 519
                     case 'many':
520 520
                         $relCol = $relations[$rel]['col'];
521 521
                         $relations[$rel]['model']::fixPrefix($relCol);
522
-                        $rootModel::$relJoins[$joinName] = [$relations[$rel]['model']::table(), static::index() . ' = ' . $relCol, 'left',''];
522
+                        $rootModel::$relJoins[$joinName] = [$relations[$rel]['model']::table(), static::index() . ' = ' . $relCol, 'left', ''];
523 523
                         break;
524 524
                 }
525 525
                 $relations[$rel]['model']::fixPrefix($col, 'key', $rootModel);
Please login to merge, or discard this patch.