Completed
Branch feature/pre-split (bbd802)
by Anton
02:54
created
source/Spiral/Database/Schemas/Prototypes/AbstractColumn.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -663,7 +663,7 @@  discard block
 block discarded – undo
663 663
         }
664 664
 
665 665
         if (!empty($enumValues)) {
666
-            return '(' . implode(', ', $enumValues) . ')';
666
+            return '('.implode(', ', $enumValues).')';
667 667
         }
668 668
 
669 669
         return '';
@@ -732,7 +732,7 @@  discard block
 block discarded – undo
732 732
                 $timestamp = strtotime($value);
733 733
                 if ($timestamp === false) {
734 734
                     throw new DefaultValueException(
735
-                        "Unable to normalize timestamp '{$value}' for column type '{$type}' in " . get_class($this)
735
+                        "Unable to normalize timestamp '{$value}' for column type '{$type}' in ".get_class($this)
736 736
                     );
737 737
                 }
738 738
 
Please login to merge, or discard this patch.