Completed
Branch feature/pre-split (ecea15)
by Anton
03:28
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.
source/Spiral/Database/Builders/SelectQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -265,7 +265,7 @@
 block discarded – undo
265 265
     public function __call(string $method, array $arguments)
266 266
     {
267 267
         if (!in_array($method = strtoupper($method), ['AVG', 'MIN', 'MAX', 'SUM'])) {
268
-            throw new BuilderException("Unknown method '{$method}' in '" . get_class($this) . "'");
268
+            throw new BuilderException("Unknown method '{$method}' in '".get_class($this)."'");
269 269
         }
270 270
 
271 271
         if (!isset($arguments[0]) || count($arguments) > 1) {
Please login to merge, or discard this patch.