Completed
Push — master ( 02d004...3afc21 )
by Thomas
02:23
created
src/Entity.php 1 patch
Spacing   +6 added lines, -8 removed lines patch added patch discarded remove patch
@@ -154,8 +154,7 @@  discard block
 block discarded – undo
154 154
                 $from = $match[3][0] === '-' ? count($words) - substr($match[3], 1) : $match[3];
155 155
                 if (isset($words[$from])) {
156 156
                     return !isset($match[4]) ?
157
-                        $words[$from] :
158
-                        implode('_', array_slice($words, $from));
157
+                        $words[$from] : implode('_', array_slice($words, $from));
159 158
                 }
160 159
                 return '';
161 160
             }, static::getTableNameTemplate());
@@ -677,7 +676,7 @@  discard block
 block discarded – undo
677 676
                 if (empty($associations)) {
678 677
                     $cols[] = $this->entityManager->escapeIdentifier($fkCol);
679 678
                 }
680
-                $value        = $entity->__get($hisVar);
679
+                $value = $entity->__get($hisVar);
681 680
 
682 681
                 if ($value === null) {
683 682
                     throw new IncompletePrimaryKey('Key incomplete to save foreign key');
@@ -723,7 +722,7 @@  discard block
 block discarded – undo
723 722
         $where = [];
724 723
 
725 724
         foreach ($myRelDef[self::OPT_RELATION_REFERENCE] as $myVar => $fkCol) {
726
-            $value             = $this->__get($myVar);
725
+            $value = $this->__get($myVar);
727 726
 
728 727
             if ($value === null) {
729 728
                 throw new IncompletePrimaryKey('Key incomplete to save foreign key');
@@ -740,13 +739,13 @@  discard block
 block discarded – undo
740 739
 
741 740
             $condition = [];
742 741
             foreach ($oppRelDef[self::OPT_RELATION_REFERENCE] as $hisVar => $fkCol) {
743
-                $value        = $entity->__get($hisVar);
742
+                $value = $entity->__get($hisVar);
744 743
 
745 744
                 if ($value === null) {
746 745
                     throw new IncompletePrimaryKey('Key incomplete to save foreign key');
747 746
                 }
748 747
 
749
-                $condition[] = $this->entityManager->escapeIdentifier($fkCol) .' = ' .
748
+                $condition[] = $this->entityManager->escapeIdentifier($fkCol) . ' = ' .
750 749
                         $this->entityManager->escapeValue($value);
751 750
             }
752 751
             $where[] = implode(' AND ', $condition);
@@ -900,8 +899,7 @@  discard block
 block discarded – undo
900 899
         }
901 900
 
902 901
         $reference = !isset($myRelDef[self::OPT_RELATION_TABLE]) ?
903
-            array_flip($oppRelDef[self::OPT_RELATION_REFERENCE]) :
904
-            $myRelDef[self::OPT_RELATION_REFERENCE];
902
+            array_flip($oppRelDef[self::OPT_RELATION_REFERENCE]) : $myRelDef[self::OPT_RELATION_REFERENCE];
905 903
         $foreignKey = $this->getForeignKey($reference);
906 904
 
907 905
         if (!isset($myRelDef[self::OPT_RELATION_TABLE])) {
Please login to merge, or discard this patch.
src/EntityFetcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@
 block discarded – undo
203 203
             return null;
204 204
         }
205 205
 
206
-        $data      = $result->fetch(\PDO::FETCH_ASSOC);
206
+        $data = $result->fetch(\PDO::FETCH_ASSOC);
207 207
 
208 208
         if (!$data) {
209 209
             return null;
Please login to merge, or discard this patch.
src/EntityManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -440,10 +440,10 @@
 block discarded – undo
440 440
                 return $this->getConnection()->quote($value);
441 441
 
442 442
             case 'integer':
443
-                return (string)$value;
443
+                return (string) $value;
444 444
 
445 445
             case 'double':
446
-                return (string)$value;
446
+                return (string) $value;
447 447
 
448 448
             case 'boolean':
449 449
                 $connectionType = $this->getConnection()->getAttribute(\PDO::ATTR_DRIVER_NAME);
Please login to merge, or discard this patch.
src/QueryBuilder/QueryBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
     /** {@inheritdoc} */
309 309
     public function limit($limit)
310 310
     {
311
-        $this->limit = (int)$limit;
311
+        $this->limit = (int) $limit;
312 312
 
313 313
         return $this;
314 314
     }
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
     /** {@inheritdoc} */
317 317
     public function offset($offset)
318 318
     {
319
-        $this->offset = (int)$offset;
319
+        $this->offset = (int) $offset;
320 320
 
321 321
         return $this;
322 322
     }
Please login to merge, or discard this patch.