Passed
Push — master ( 6db1cc...1d22e7 )
by Bruno
05:22
created
Modelarium/Laravel/Datatype/Datatype_relationship.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     public const RELATIONSHIP = "RELATIONSHIP";
12 12
     public const RELATIONSHIP_ONE_TO_ONE = "RELATIONSHIP_ONE_TO_ONE";
13 13
     public const RELATIONSHIP_ONE_TO_MANY = "RELATIONSHIP_ONE_TO_MANY";
14
-    public const RELATIONSHIP_MANY_TO_MANY  = "RELATIONSHIP_MANY_TO_MANY";
14
+    public const RELATIONSHIP_MANY_TO_MANY = "RELATIONSHIP_MANY_TO_MANY";
15 15
 
16 16
     /**
17 17
      * @var string
Please login to merge, or discard this patch.
Modelarium/Laravel/Console/Commands/ModelariumScaffoldCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
         $this->writeFiles(
113 113
             $processor->getCollection(),
114 114
             base_path(),
115
-            (bool)$this->option('overwrite')
115
+            (bool) $this->option('overwrite')
116 116
         );
117 117
         $this->info('Finished scaffolding. You might want to run `composer dump-autoload`');
118 118
     }
Please login to merge, or discard this patch.
Modelarium/Laravel/Console/Commands/ModelariumFrontendCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
         $writtenFiles = $this->writeFiles(
82 82
             $collection,
83 83
             $basepath,
84
-            (bool)$this->option('overwrite')
84
+            (bool) $this->option('overwrite')
85 85
         );
86 86
         $this->info('Files generated.');
87 87
 
Please login to merge, or discard this patch.