Passed
Push — master ( 6c900b...b2b78e )
by Vincent
09:01 queued 13s
created
src/Query/Factory/DefaultQueryFactory.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -94,16 +94,16 @@
 block discarded – undo
94 94
      */
95 95
     public function compiler($query)
96 96
     {
97
-         if (!isset($this->compilers[$query])) {
98
-             return $this->defaultCompiler;
99
-         }
97
+            if (!isset($this->compilers[$query])) {
98
+                return $this->defaultCompiler;
99
+            }
100 100
 
101
-         $compiler = $this->compilers[$query];
101
+            $compiler = $this->compilers[$query];
102 102
 
103
-         if (is_string($compiler)) {
104
-             return $this->compilers[$query] = new $compiler($this->connection);
105
-         }
103
+            if (is_string($compiler)) {
104
+                return $this->compilers[$query] = new $compiler($this->connection);
105
+            }
106 106
 
107
-         return $compiler;
107
+            return $compiler;
108 108
     }
109 109
 }
Please login to merge, or discard this patch.
src/Test/RepositoryAssertion.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -66,16 +66,16 @@
 block discarded – undo
66 66
         $this->assertEntity($expected, $entity, 0, $message);
67 67
     }
68 68
     
69
-     /**
70
-     * Assert that two array of entities are equal
71
-     * 
72
-     * @param array $expectedEntities
73
-     * @param array $actualEntities
74
-     * @param int   $dateTimeDelta
75
-     * @param string $message
76
-      *
77
-      * @throws \Exception
78
-     */
69
+        /**
70
+         * Assert that two array of entities are equal
71
+         * 
72
+         * @param array $expectedEntities
73
+         * @param array $actualEntities
74
+         * @param int   $dateTimeDelta
75
+         * @param string $message
76
+         *
77
+         * @throws \Exception
78
+         */
79 79
     public function assertEntities($expectedEntities, $actualEntities, $dateTimeDelta = 5, $message = '')
80 80
     {
81 81
         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
@@ -724,13 +724,13 @@
 block discarded – undo
724 724
         }
725 725
 
726 726
         $replacements = array(
727
-          '<description>'       => ucfirst($type).' '.$variableName,
728
-          '<methodTypeHint>'    => $methodTypeHint,
729
-          '<variableType>'      => $variableType,
730
-          '<variableName>'      => $variableName,
731
-          '<methodName>'        => $methodName,
732
-          '<fieldName>'         => $fieldName,
733
-          '<variableDefault>'   => ($defaultValue !== null ) ? (' = '.$defaultValue) : ''
727
+            '<description>'       => ucfirst($type).' '.$variableName,
728
+            '<methodTypeHint>'    => $methodTypeHint,
729
+            '<variableType>'      => $variableType,
730
+            '<variableName>'      => $variableName,
731
+            '<methodName>'        => $methodName,
732
+            '<fieldName>'         => $fieldName,
733
+            '<variableDefault>'   => ($defaultValue !== null ) ? (' = '.$defaultValue) : ''
734 734
         );
735 735
 
736 736
         $method = str_replace(
Please login to merge, or discard this patch.