@@ -663,7 +663,7 @@ discard block |
||
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 |
||
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 |