Completed
Push — master ( 623a31...6b22a4 )
by Jose Luis
02:01
created
src/EntityGenerator/Middleware/SetPrefixAndTableName.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,10 +49,10 @@
 block discarded – undo
49 49
      */
50 50
     protected function getTableName($command)
51 51
     {
52
-        if(!empty($command->table_name)) {
52
+        if (!empty($command->table_name)) {
53 53
             return $command->table_name;
54 54
         }
55
-        if(empty($command->prefix)) {
55
+        if (empty($command->prefix)) {
56 56
             return $command->slug;
57 57
         }
58 58
         return $command->prefix.'_'.$command->slug;
Please login to merge, or discard this patch.