Passed
Pull Request — master (#35)
by Anton
03:28
created
src/Command/Db/AbstractDbCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,8 +47,8 @@
 block discarded – undo
47 47
         // write database name to console
48 48
         // to avoid any mistakes
49 49
         $config = include $phinxArguments['--configuration'];
50
-        $this->write('<info>host</info> '. $config['environments']['default']['host']);
51
-        $this->write('<info>name</info> '. $config['environments']['default']['name']);
50
+        $this->write('<info>host</info> ' . $config['environments']['default']['host']);
51
+        $this->write('<info>name</info> ' . $config['environments']['default']['name']);
52 52
 
53 53
         if ($command->getDefinition()->hasOption('environment')) {
54 54
             $phinxArguments['--environment'] = 'default';
Please login to merge, or discard this patch.
src/Command/Generate/CrudCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
         $this->write(" |> CRUD for <info>{$model}</info> has been successfully created.");
133 133
         if ($module) {
134 134
             $this->write(
135
-                " |> <options=bold>Open page <info>/acl</info> in your browser ".
135
+                " |> <options=bold>Open page <info>/acl</info> in your browser " .
136 136
                 "and set permission <info>Management</info> for <info>{$module}</info> module</>"
137 137
             );
138 138
         }
Please login to merge, or discard this patch.
src/Command/Generate/AbstractGenerateCommand.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
             );
113 113
         }
114 114
         include_once $file;
115
-        $class = '\\Application\\'. ucfirst($model) . '\\Table';
115
+        $class = '\\Application\\' . ucfirst($model) . '\\Table';
116 116
         if (!class_exists($class)) {
117 117
             throw new GeneratorException("Bluzman can't found `Table` class for model `$model`");
118 118
         }
Please login to merge, or discard this patch.
src/Command/Generate/GridCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
 
130 130
         if ($module) {
131 131
             $this->write(
132
-                " |> <options=bold>Open page <info>/acl</info> in your browser ".
132
+                " |> <options=bold>Open page <info>/acl</info> in your browser " .
133 133
                 "and set permission <info>Management</info> for <info>{$module}</info> module</>"
134 134
             );
135 135
         }
Please login to merge, or discard this patch.
src/Command/Generate/RestCommand.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
 
113 113
         $this->write(" |> REST for <info>{$model}</info> has been successfully created.");
114 114
         $this->write(
115
-            " |> <options=bold>Open page <info>/acl</info> in your browser ".
115
+            " |> <options=bold>Open page <info>/acl</info> in your browser " .
116 116
             "and set permissions <info>Management</info> for <info>{$module}</info> module</>"
117 117
         );
118 118
     }
Please login to merge, or discard this patch.