Passed
Push — fix-FRAM-102-disallow-using-sa... ( a4f1ec )
by Vincent
20:15
created
src/Test/RepositoryAssertion.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -68,15 +68,15 @@
 block discarded – undo
68 68
     }
69 69
 
70 70
     /**
71
-    * Assert that two array of entities are equal
72
-    *
73
-    * @param array $expectedEntities
74
-    * @param array $actualEntities
75
-    * @param int   $dateTimeDelta
76
-    * @param string $message
71
+     * Assert that two array of entities are equal
72
+     *
73
+     * @param array $expectedEntities
74
+     * @param array $actualEntities
75
+     * @param int   $dateTimeDelta
76
+     * @param string $message
77 77
      *
78 78
      * @throws \Exception
79
-    */
79
+     */
80 80
     public function assertEntities($expectedEntities, $actualEntities, $dateTimeDelta = 5, $message = '')
81 81
     {
82 82
         if (is_string($dateTimeDelta)) {
Please login to merge, or discard this patch.
src/Entity/EntityGenerator.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -772,13 +772,13 @@
 block discarded – undo
772 772
         }
773 773
 
774 774
         $replacements = [
775
-          '<description>'       => ucfirst($type).' '.$variableName,
776
-          '<methodTypeHint>'    => $methodTypeHint,
777
-          '<variableType>'      => $variableType,
778
-          '<variableName>'      => $variableName,
779
-          '<methodName>'        => $methodName,
780
-          '<fieldName>'         => $fieldName,
781
-          '<variableDefault>'   => ($defaultValue !== null) ? (' = '.$defaultValue) : ''
775
+            '<description>'       => ucfirst($type).' '.$variableName,
776
+            '<methodTypeHint>'    => $methodTypeHint,
777
+            '<variableType>'      => $variableType,
778
+            '<variableName>'      => $variableName,
779
+            '<methodName>'        => $methodName,
780
+            '<fieldName>'         => $fieldName,
781
+            '<variableDefault>'   => ($defaultValue !== null) ? (' = '.$defaultValue) : ''
782 782
         ];
783 783
 
784 784
         $method = str_replace(
Please login to merge, or discard this patch.