Test Failed
Push — master ( 03fc86...4f3f60 )
by Alexey
05:02
created
system/modules/Migrations/Migrations.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
  * @copyright 2015 Alexey Krupskiy
11 11
  * @license https://github.com/injitools/cms-Inji/blob/master/LICENSE
12 12
  */
13
-define('mdebug',true);
13
+define('mdebug', true);
14 14
 class Migrations extends \Module {
15 15
 
16 16
     public $ids = [];
Please login to merge, or discard this patch.
system/modules/Migrations/objects/Walker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         //walk know pathes
28 28
         foreach ($this->map->paths(['where' => ['path', $this->curPath]]) as $path) {
29 29
             if (defined('mdebug')) {
30
-                echo $path->item ;
30
+                echo $path->item;
31 31
             }
32 32
             if (isset($this->data[$path->item])) {
33 33
                 if ($path->type == 'container') {
Please login to merge, or discard this patch.
system/modules/Migrations/objects/Parser/Object.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
             $walked = [];
49 49
             foreach ($this->object->params as $param) {
50
-                if(defined('mdebug')){
50
+                if (defined('mdebug')) {
51 51
                     echo " -> param ($param->id,$param->type,$param->value) ";
52 52
                 }
53 53
                 if ($model && $param->type && $param->type != 'item_key') {
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
                         $parser->parentObject = $this;
60 60
                         $parser->parentModel = $model;
61 61
                         $parser->walker = $this->walker;
62
-                        if(defined('mdebug')){
62
+                        if (defined('mdebug')) {
63 63
                             echo " -> objectParse ";
64 64
                         }
65 65
                         $parser->parse();
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
                         $parser->param = $param;
75 75
                         $parser->model = $model;
76 76
                         $parser->object = $this;
77
-                        if(defined('mdebug')){
77
+                        if (defined('mdebug')) {
78 78
                             echo " -> parser ($parserName) ";
79 79
                         }
80 80
                         $parser->parse();
Please login to merge, or discard this patch.
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
             $walked = [];
49 49
             foreach ($this->object->params as $param) {
50
-                if(defined('mdebug')){
50
+                if(defined('mdebug')) {
51 51
                     echo " -> param ($param->id,$param->type,$param->value) ";
52 52
                 }
53 53
                 if ($model && $param->type && $param->type != 'item_key') {
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
                         $parser->parentObject = $this;
60 60
                         $parser->parentModel = $model;
61 61
                         $parser->walker = $this->walker;
62
-                        if(defined('mdebug')){
62
+                        if(defined('mdebug')) {
63 63
                             echo " -> objectParse ";
64 64
                         }
65 65
                         $parser->parse();
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
                         $parser->param = $param;
75 75
                         $parser->model = $model;
76 76
                         $parser->object = $this;
77
-                        if(defined('mdebug')){
77
+                        if(defined('mdebug')) {
78 78
                             echo " -> parser ($parserName) ";
79 79
                         }
80 80
                         $parser->parse();
Please login to merge, or discard this patch.