Completed
Push — develop ( 9a8e5d...f3324f )
by Neomerx
02:42
created
src/Adapters/ModelQueryBuilder.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -560,7 +560,7 @@  discard block
 block discarded – undo
560 560
      */
561 561
     public function buildColumnName(string $table, string $column): string
562 562
     {
563
-        return $this->quoteTableName($table) . '.' . $this->quoteColumnName($column);
563
+        return $this->quoteTableName($table).'.'.$this->quoteColumnName($column);
564 564
     }
565 565
 
566 566
     /**
@@ -602,7 +602,7 @@  discard block
 block discarded – undo
602 602
      */
603 603
     public function createAlias(string $tableName): string
604 604
     {
605
-        $alias                          = $tableName . (++$this->aliasIdCounter);
605
+        $alias                          = $tableName.(++$this->aliasIdCounter);
606 606
         $this->knownAliases[$tableName] = $alias;
607 607
 
608 608
         return $alias;
@@ -656,7 +656,7 @@  discard block
 block discarded – undo
656 656
         string $targetColumn
657 657
     ): string {
658 658
         $targetAlias   = $this->createAlias($targetTable);
659
-        $joinCondition = $this->buildColumnName($fromAlias, $fromColumn) . '=' .
659
+        $joinCondition = $this->buildColumnName($fromAlias, $fromColumn).'='.
660 660
             $this->buildColumnName($targetAlias, $targetColumn);
661 661
 
662 662
         $this->innerJoin(
@@ -854,7 +854,7 @@  discard block
 block discarded – undo
854 854
         } else {
855 855
             assert(
856 856
                 $value !== null,
857
-                'It seems you are trying to use `null` with =, >, <, or etc operator. ' .
857
+                'It seems you are trying to use `null` with =, >, <, or etc operator. '.
858 858
                 'Use `is null` or `not null` instead.'
859 859
             );
860 860
             assert(is_string($value), "Only strings, booleans and integers are supported.");
Please login to merge, or discard this patch.