Completed
Branch feature/pre-split (42159e)
by Anton
05:36
created
source/Spiral/Database/Schemas/Prototypes/AbstractColumn.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -637,7 +637,7 @@  discard block
 block discarded – undo
637 637
      */
638 638
     public function __toString()
639 639
     {
640
-        return $this->table . '.' . $this->getName();
640
+        return $this->table.'.'.$this->getName();
641 641
     }
642 642
 
643 643
     /**
@@ -695,7 +695,7 @@  discard block
 block discarded – undo
695 695
         }
696 696
 
697 697
         if (!empty($enumValues)) {
698
-            return '(' . implode(', ', $enumValues) . ')';
698
+            return '('.implode(', ', $enumValues).')';
699 699
         }
700 700
 
701 701
         return '';
Please login to merge, or discard this patch.