Passed
Push — feature-FRAM-58-refactor-entit... ( e3cd10...fc48d1 )
by Vincent
06:00
created
bench/Query/JoinBench.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Bdf\Prime\Query;
4 4
 
5
-require_once __DIR__ . '/../_files/BenchData.php';
5
+require_once __DIR__.'/../_files/BenchData.php';
6 6
 
7 7
 use Bdf\Prime\Bench\BenchData;
8 8
 use Bdf\Prime\Bench\User as BenchUser;
Please login to merge, or discard this patch.
bench/Query/CustomQueriesBench.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 namespace Bdf\Prime\Query;
4 4
 
5
-require_once __DIR__ . '/../_files/BenchData.php';
5
+require_once __DIR__.'/../_files/BenchData.php';
6 6
 
7 7
 use Bdf\Prime\Bench\BenchData;
8 8
 use Bdf\Prime\Bench\User;
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
      */
209 209
     public function bench_insert_transaction()
210 210
     {
211
-        $this->repository->transaction(function () {
211
+        $this->repository->transaction(function() {
212 212
             /** @var BulkInsertQuery $insert */
213 213
             $insert = $this->repository->queries()->make(BulkInsertQuery::class);
214 214
 
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
      */
233 233
     public function bench_insert_builder()
234 234
     {
235
-        $this->repository->transaction(function () {
235
+        $this->repository->transaction(function() {
236 236
             for ($i = 0; $i < 100; ++$i) {
237 237
                 $this->repository->builder()->insert([
238 238
                     'id'          => 6000000 + $i,
Please login to merge, or discard this patch.
bench/PrimeBench.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 namespace Bdf\Prime;
4 4
 
5
-require_once __DIR__ . '/_files/BenchData.php';
5
+require_once __DIR__.'/_files/BenchData.php';
6 6
 
7 7
 use Bdf\Prime\Bench\BenchData;
8 8
 use Bdf\Prime\Bench\User as BenchUser;
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 }
116 116
 
117 117
 function convert($size) {
118
-    return number_format($size/1024).' kb';
118
+    return number_format($size / 1024).' kb';
119 119
 }
120 120
 
121 121
 function profile($callback, $times) {
@@ -135,9 +135,9 @@  discard block
 block discarded – undo
135 135
     
136 136
     $delta = ($end - $start);
137 137
     
138
-    $bench['time'] =  $delta;
139
-    $bench['queries'] =  $times / $delta;
140
-    $bench['memory'] =  memory_get_usage(true) - $memory;
138
+    $bench['time'] = $delta;
139
+    $bench['queries'] = $times / $delta;
140
+    $bench['memory'] = memory_get_usage(true) - $memory;
141 141
     
142 142
     return $bench;
143 143
 }
144 144
\ No newline at end of file
Please login to merge, or discard this patch.
bench/Query/QueryWrapAsBench.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Bdf\Prime\Query;
4 4
 
5
-require_once __DIR__ . '/../_files/BenchData.php';
5
+require_once __DIR__.'/../_files/BenchData.php';
6 6
 
7 7
 use Bdf\Prime\Bench\BenchData;
8 8
 use Bdf\Prime\Bench\User;
Please login to merge, or discard this patch.
bench/Query/CompilerBench.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Bdf\Prime\Query;
4 4
 
5
-require_once __DIR__ . '/../_files/BenchData.php';
5
+require_once __DIR__.'/../_files/BenchData.php';
6 6
 
7 7
 use Bdf\Prime\Bench\BenchData;
8 8
 use Bdf\Prime\Bench\User;
Please login to merge, or discard this patch.
src/Query/Compiler/SqlCompiler.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         foreach ($query->statements['tables'] as $table) {
187 187
             return $query->state()->compiled = 'UPDATE '
188 188
                 . $this->quoteIdentifier($query, $table['table'])
189
-                . ' SET ' . implode(', ', $values)
189
+                . ' SET '.implode(', ', $values)
190 190
                 . $this->compileWhere($query)
191 191
             ;
192 192
         }
@@ -524,7 +524,7 @@  discard block
 block discarded – undo
524 524
                     $from['sql'] = $this->quoteIdentifier($query, $databasePrefix.$from['table']);
525 525
                     $compiled[$from['table']] = $from;
526 526
                 } else {
527
-                    $from['sql'] = $this->quoteIdentifier($query, $databasePrefix.$from['table']) . ' ' . $this->quoteIdentifier($query, $from['alias']);
527
+                    $from['sql'] = $this->quoteIdentifier($query, $databasePrefix.$from['table']).' '.$this->quoteIdentifier($query, $from['alias']);
528 528
                     $compiled[$from['alias']] = $from;
529 529
                 }
530 530
             }
@@ -697,7 +697,7 @@  discard block
 block discarded – undo
697 697
                 if (is_array($value)) {
698 698
                     return $this->compileIntoExpression($query, $value, $column, 'REGEXP', $converted);
699 699
                 }
700
-                return $this->quoteIdentifier($query, $column).' REGEXP '.$this->compileExpressionValue($query, (string)$value, $converted);
700
+                return $this->quoteIdentifier($query, $column).' REGEXP '.$this->compileExpressionValue($query, (string) $value, $converted);
701 701
 
702 702
             case ':like':
703 703
                 if (is_array($value)) {
@@ -761,7 +761,7 @@  discard block
 block discarded – undo
761 761
                 return $this->quoteIdentifier($query, $column).' = '.$this->compileExpressionValue($query, $value, $converted);
762 762
 
763 763
             default:
764
-                throw new UnexpectedValueException("Unsupported operator '" . $operator . "' in WHERE clause");
764
+                throw new UnexpectedValueException("Unsupported operator '".$operator."' in WHERE clause");
765 765
         }
766 766
     }
767 767
 
@@ -849,7 +849,7 @@  discard block
 block discarded – undo
849 849
         $sql = '('.$this->compileSelect($query).')';
850 850
 
851 851
         if ($alias) {
852
-            $sql = $sql . ' as ' . $this->quoteIdentifier($clause, $alias);
852
+            $sql = $sql.' as '.$this->quoteIdentifier($clause, $alias);
853 853
         }
854 854
 
855 855
         $this->addQueryBindings($clause, $query);
@@ -1007,12 +1007,12 @@  discard block
 block discarded – undo
1007 1007
         if ($lock !== null && !$query->statements['aggregate']) {
1008 1008
             // Lock for update
1009 1009
             if ($lock === LockMode::PESSIMISTIC_WRITE) {
1010
-                return ' ' . $this->platform()->grammar()->getWriteLockSQL();
1010
+                return ' '.$this->platform()->grammar()->getWriteLockSQL();
1011 1011
             }
1012 1012
 
1013 1013
             // Shared Lock: other process can read the row but not update it.
1014 1014
             if ($lock === LockMode::PESSIMISTIC_READ) {
1015
-                return ' ' . $this->platform()->grammar()->getReadLockSQL();
1015
+                return ' '.$this->platform()->grammar()->getReadLockSQL();
1016 1016
             }
1017 1017
         }
1018 1018
 
Please login to merge, or discard this patch.
src/Entity/EntityGenerator.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -536,7 +536,7 @@  discard block
 block discarded – undo
536 536
                 case $property->isArray() && $property->wrapper() === null:
537 537
                     // Simple array relation
538 538
                     $generator->setDefaultValue([]);
539
-                    $generator->setVarTag($property->className() . '[]');
539
+                    $generator->setVarTag($property->className().'[]');
540 540
 
541 541
                     if ($this->useTypedProperties) {
542 542
                         $generator->setTypeHint('array');
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
                 case $property->isArray() && $property->wrapper() !== null:
547 547
                     // Array relation with wrapper
548 548
                     $repository = $this->prime->repository($property->className());
549
-                    $generator->setVarTag($repository->collectionFactory()->wrapperClass($property->wrapper()) . '|' . $property->className() . '[]');
549
+                    $generator->setVarTag($repository->collectionFactory()->wrapperClass($property->wrapper()).'|'.$property->className().'[]');
550 550
 
551 551
                     // The value is an object : so the default value must be null
552 552
                     if ($nullable) {
@@ -601,7 +601,7 @@  discard block
 block discarded – undo
601 601
             $variableName = $this->inflector->camelize($fieldName);
602 602
             $methodName = $variableName;
603 603
         } else {
604
-            $methodName = $prefix . $this->inflector->classify($fieldName);
604
+            $methodName = $prefix.$this->inflector->classify($fieldName);
605 605
             $variableName = $this->inflector->camelize($fieldName);
606 606
         }
607 607
 
@@ -664,12 +664,12 @@  discard block
 block discarded – undo
664 664
         }
665 665
 
666 666
         $method = $generator->addMethod($metadata['method']);
667
-        $method->addComment('Get ' . $metadata['variable']);
667
+        $method->addComment('Get '.$metadata['variable']);
668 668
         $method->addComment('');
669 669
         $method->setReturnType($metadata['typeHint']);
670 670
         $method->setReturnNullable($metadata['nullable']);
671 671
         $method->setBody('return $this->?;', [$metadata['field']]);
672
-        $method->addComment('@return ' . $metadata['docType']);
672
+        $method->addComment('@return '.$metadata['docType']);
673 673
     }
674 674
 
675 675
     protected function generateSetter(ClassType $generator, PhpNamespace $namespace, InfoInterface $propertyInfo): void
@@ -681,9 +681,9 @@  discard block
 block discarded – undo
681 681
         }
682 682
 
683 683
         $method = $generator->addMethod($metadata['method']);
684
-        $method->addComment('Set ' . $metadata['variable']);
684
+        $method->addComment('Set '.$metadata['variable']);
685 685
         $method->addComment('');
686
-        $method->addComment('@param ' . $metadata['docType'] . ' $' . $metadata['variable']);
686
+        $method->addComment('@param '.$metadata['docType'].' $'.$metadata['variable']);
687 687
         $method->addComment('');
688 688
         $method->addComment('@return $this');
689 689
         $method->setReturnType('self');
@@ -706,9 +706,9 @@  discard block
 block discarded – undo
706 706
         }
707 707
 
708 708
         $method = $generator->addMethod($metadata['method']);
709
-        $method->addComment('Add ' . $metadata['variable']);
709
+        $method->addComment('Add '.$metadata['variable']);
710 710
         $method->addComment('');
711
-        $method->addComment('@param ' . $metadata['docType'] . ' $' . $metadata['variable']);
711
+        $method->addComment('@param '.$metadata['docType'].' $'.$metadata['variable']);
712 712
         $method->addComment('');
713 713
         $method->addComment('@return $this');
714 714
         $method->setReturnType('self');
@@ -759,7 +759,7 @@  discard block
 block discarded – undo
759 759
 
760 760
             if ($inClass) {
761 761
                 $inClass = false;
762
-                $lastSeenClass = $lastSeenNamespace . ($lastSeenNamespace ? '\\' : '') . $token[1];
762
+                $lastSeenClass = $lastSeenNamespace.($lastSeenNamespace ? '\\' : '').$token[1];
763 763
                 $this->staticReflection[$lastSeenClass]['properties'] = [];
764 764
                 $this->staticReflection[$lastSeenClass]['methods'] = [];
765 765
             }
@@ -767,16 +767,16 @@  discard block
 block discarded – undo
767 767
             if ($token[0] == T_NAMESPACE) {
768 768
                 $lastSeenNamespace = "";
769 769
                 $inNamespace = true;
770
-            } elseif ($token[0] == T_CLASS && $tokens[$i-1][0] != T_DOUBLE_COLON) {
770
+            } elseif ($token[0] == T_CLASS && $tokens[$i - 1][0] != T_DOUBLE_COLON) {
771 771
                 $inClass = true;
772 772
             } elseif ($token[0] == T_FUNCTION) {
773
-                if ($tokens[$i+2][0] == T_STRING) {
774
-                    $this->staticReflection[$lastSeenClass]['methods'][] = strtolower($tokens[$i+2][1]);
775
-                } elseif ($tokens[$i+2] == "&" && $tokens[$i+3][0] == T_STRING) {
776
-                    $this->staticReflection[$lastSeenClass]['methods'][] = strtolower($tokens[$i+3][1]);
773
+                if ($tokens[$i + 2][0] == T_STRING) {
774
+                    $this->staticReflection[$lastSeenClass]['methods'][] = strtolower($tokens[$i + 2][1]);
775
+                } elseif ($tokens[$i + 2] == "&" && $tokens[$i + 3][0] == T_STRING) {
776
+                    $this->staticReflection[$lastSeenClass]['methods'][] = strtolower($tokens[$i + 3][1]);
777 777
                 }
778
-            } elseif (in_array($token[0], [T_VAR, T_PUBLIC, T_PRIVATE, T_PROTECTED]) && $tokens[$i+2][0] != T_FUNCTION) {
779
-                $this->staticReflection[$lastSeenClass]['properties'][] = substr($tokens[$i+2][1], 1);
778
+            } elseif (in_array($token[0], [T_VAR, T_PUBLIC, T_PRIVATE, T_PROTECTED]) && $tokens[$i + 2][0] != T_FUNCTION) {
779
+                $this->staticReflection[$lastSeenClass]['properties'][] = substr($tokens[$i + 2][1], 1);
780 780
             }
781 781
         }
782 782
     }
@@ -1026,7 +1026,7 @@  discard block
 block discarded – undo
1026 1026
     public function setFieldVisibility(string $visibility): void
1027 1027
     {
1028 1028
         if ($visibility !== static::FIELD_VISIBLE_PRIVATE && $visibility !== static::FIELD_VISIBLE_PROTECTED) {
1029
-            throw new \InvalidArgumentException('Invalid provided visibility (only private and protected are allowed): ' . $visibility);
1029
+            throw new \InvalidArgumentException('Invalid provided visibility (only private and protected are allowed): '.$visibility);
1030 1030
         }
1031 1031
 
1032 1032
         $this->fieldVisibility = $visibility;
@@ -1293,7 +1293,7 @@  discard block
 block discarded – undo
1293 1293
                 continue;
1294 1294
             }
1295 1295
 
1296
-            $part = $namespace->simplifyName($atomicType) . ($isArray ? '[]' : '');
1296
+            $part = $namespace->simplifyName($atomicType).($isArray ? '[]' : '');
1297 1297
         }
1298 1298
 
1299 1299
         return implode('|', $types);
Please login to merge, or discard this patch.