Passed
Push — feature-FRAM-58-refactor-entit... ( e3cd10 )
by Vincent
06:19
created
src/Entity/EntityGenerator.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -536,11 +536,11 @@  discard block
 block discarded – undo
536 536
 
537 537
             $generator->setNullable($nullable = $forceNullable || $this->useTypedProperties);
538 538
 
539
-            switch(true) {
539
+            switch (true) {
540 540
                 case $property->isArray() && $property->wrapper() === null:
541 541
                     // Simple array relation
542 542
                     $generator->setDefaultValue([]);
543
-                    $generator->setVarTag($property->className() . '[]');
543
+                    $generator->setVarTag($property->className().'[]');
544 544
 
545 545
                     if ($this->useTypedProperties) {
546 546
                         $generator->setTypeHint('array');
@@ -550,7 +550,7 @@  discard block
 block discarded – undo
550 550
                 case $property->isArray() && $property->wrapper() !== null:
551 551
                     // Array relation with wrapper
552 552
                     $repository = $this->prime->repository($property->className());
553
-                    $generator->setVarTag($repository->collectionFactory()->wrapperClass($property->wrapper()) . '|' . $property->className() . '[]');
553
+                    $generator->setVarTag($repository->collectionFactory()->wrapperClass($property->wrapper()).'|'.$property->className().'[]');
554 554
 
555 555
                     // The value is an object : so the default value must be null
556 556
                     if ($nullable) {
@@ -605,7 +605,7 @@  discard block
 block discarded – undo
605 605
             $variableName = $this->inflector->camelize($fieldName);
606 606
             $methodName = $variableName;
607 607
         } else {
608
-            $methodName = $prefix . $this->inflector->classify($fieldName);
608
+            $methodName = $prefix.$this->inflector->classify($fieldName);
609 609
             $variableName = $this->inflector->camelize($fieldName);
610 610
         }
611 611
 
@@ -668,12 +668,12 @@  discard block
 block discarded – undo
668 668
         }
669 669
 
670 670
         $method = $generator->addMethod($metadata['method']);
671
-        $method->addComment('Get ' . $metadata['variable']);
671
+        $method->addComment('Get '.$metadata['variable']);
672 672
         $method->addComment('');
673 673
         $method->setReturnType($metadata['typeHint']);
674 674
         $method->setReturnNullable($metadata['nullable']);
675 675
         $method->setBody('return $this->?;', [$metadata['field']]);
676
-        $method->addComment('@return ' . $metadata['docType']);
676
+        $method->addComment('@return '.$metadata['docType']);
677 677
     }
678 678
 
679 679
     protected function generateSetter(ClassType $generator, PhpNamespace $namespace, InfoInterface $propertyInfo): void
@@ -685,9 +685,9 @@  discard block
 block discarded – undo
685 685
         }
686 686
 
687 687
         $method = $generator->addMethod($metadata['method']);
688
-        $method->addComment('Set ' . $metadata['variable']);
688
+        $method->addComment('Set '.$metadata['variable']);
689 689
         $method->addComment('');
690
-        $method->addComment('@param ' . $metadata['docType'] . ' $' . $metadata['variable']);
690
+        $method->addComment('@param '.$metadata['docType'].' $'.$metadata['variable']);
691 691
         $method->addComment('');
692 692
         $method->addComment('@return $this');
693 693
         $method->setReturnType('self');
@@ -710,9 +710,9 @@  discard block
 block discarded – undo
710 710
         }
711 711
 
712 712
         $method = $generator->addMethod($metadata['method']);
713
-        $method->addComment('Add ' . $metadata['variable']);
713
+        $method->addComment('Add '.$metadata['variable']);
714 714
         $method->addComment('');
715
-        $method->addComment('@param ' . $metadata['docType'] . ' $' . $metadata['variable']);
715
+        $method->addComment('@param '.$metadata['docType'].' $'.$metadata['variable']);
716 716
         $method->addComment('');
717 717
         $method->addComment('@return $this');
718 718
         $method->setReturnType('self');
@@ -763,7 +763,7 @@  discard block
 block discarded – undo
763 763
 
764 764
             if ($inClass) {
765 765
                 $inClass = false;
766
-                $lastSeenClass = $lastSeenNamespace . ($lastSeenNamespace ? '\\' : '') . $token[1];
766
+                $lastSeenClass = $lastSeenNamespace.($lastSeenNamespace ? '\\' : '').$token[1];
767 767
                 $this->staticReflection[$lastSeenClass]['properties'] = [];
768 768
                 $this->staticReflection[$lastSeenClass]['methods'] = [];
769 769
             }
@@ -771,16 +771,16 @@  discard block
 block discarded – undo
771 771
             if ($token[0] == T_NAMESPACE) {
772 772
                 $lastSeenNamespace = "";
773 773
                 $inNamespace = true;
774
-            } elseif ($token[0] == T_CLASS && $tokens[$i-1][0] != T_DOUBLE_COLON) {
774
+            } elseif ($token[0] == T_CLASS && $tokens[$i - 1][0] != T_DOUBLE_COLON) {
775 775
                 $inClass = true;
776 776
             } elseif ($token[0] == T_FUNCTION) {
777
-                if ($tokens[$i+2][0] == T_STRING) {
778
-                    $this->staticReflection[$lastSeenClass]['methods'][] = strtolower($tokens[$i+2][1]);
779
-                } elseif ($tokens[$i+2] == "&" && $tokens[$i+3][0] == T_STRING) {
780
-                    $this->staticReflection[$lastSeenClass]['methods'][] = strtolower($tokens[$i+3][1]);
777
+                if ($tokens[$i + 2][0] == T_STRING) {
778
+                    $this->staticReflection[$lastSeenClass]['methods'][] = strtolower($tokens[$i + 2][1]);
779
+                } elseif ($tokens[$i + 2] == "&" && $tokens[$i + 3][0] == T_STRING) {
780
+                    $this->staticReflection[$lastSeenClass]['methods'][] = strtolower($tokens[$i + 3][1]);
781 781
                 }
782
-            } elseif (in_array($token[0], [T_VAR, T_PUBLIC, T_PRIVATE, T_PROTECTED]) && $tokens[$i+2][0] != T_FUNCTION) {
783
-                $this->staticReflection[$lastSeenClass]['properties'][] = substr($tokens[$i+2][1], 1);
782
+            } elseif (in_array($token[0], [T_VAR, T_PUBLIC, T_PRIVATE, T_PROTECTED]) && $tokens[$i + 2][0] != T_FUNCTION) {
783
+                $this->staticReflection[$lastSeenClass]['properties'][] = substr($tokens[$i + 2][1], 1);
784 784
             }
785 785
         }
786 786
     }
@@ -1030,7 +1030,7 @@  discard block
 block discarded – undo
1030 1030
     public function setFieldVisibility(string $visibility): void
1031 1031
     {
1032 1032
         if ($visibility !== static::FIELD_VISIBLE_PRIVATE && $visibility !== static::FIELD_VISIBLE_PROTECTED) {
1033
-            throw new \InvalidArgumentException('Invalid provided visibility (only private and protected are allowed): ' . $visibility);
1033
+            throw new \InvalidArgumentException('Invalid provided visibility (only private and protected are allowed): '.$visibility);
1034 1034
         }
1035 1035
 
1036 1036
         $this->fieldVisibility = $visibility;
@@ -1297,7 +1297,7 @@  discard block
 block discarded – undo
1297 1297
                 continue;
1298 1298
             }
1299 1299
 
1300
-            $part = $namespace->simplifyName($atomicType) . ($isArray ? '[]' : '');
1300
+            $part = $namespace->simplifyName($atomicType).($isArray ? '[]' : '');
1301 1301
         }
1302 1302
 
1303 1303
         return implode('|', $types);
Please login to merge, or discard this patch.