Completed
Branch feature/pre-split (1b5228)
by Anton
03:14
created
source/Spiral/Database/Schemas/Prototypes/AbstractColumn.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -660,7 +660,7 @@  discard block
 block discarded – undo
660 660
         }
661 661
 
662 662
         if (!empty($enumValues)) {
663
-            return '(' . implode(', ', $enumValues) . ')';
663
+            return '('.implode(', ', $enumValues).')';
664 664
         }
665 665
 
666 666
         return '';
@@ -725,7 +725,7 @@  discard block
 block discarded – undo
725 725
             $timestamp = strtotime($value);
726 726
             if ($timestamp === false) {
727 727
                 throw new DefaultValueException(
728
-                    "Unable to normalize value '{$value}' for column type {$type} in " . get_class($this)
728
+                    "Unable to normalize value '{$value}' for column type {$type} in ".get_class($this)
729 729
                 );
730 730
             }
731 731
 
Please login to merge, or discard this patch.