Passed
Push — master ( b1c250...a07f17 )
by Shiyu
01:16
created
src/Injection/Reflection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public function hasConstructor() : bool
75 75
     {
76
-        return !! $this->constructParams;
76
+        return !!$this->constructParams;
77 77
     }
78 78
 
79 79
     /**
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      */
90 90
     public function hasProperties() : bool
91 91
     {
92
-        return !! $this->propertyInjects;
92
+        return !!$this->propertyInjects;
93 93
     }
94 94
 
95 95
     /**
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
                             continue;
179 179
                         }
180 180
                         // renaming
181
-                        $name = $keeper->getName() . '::' . $name;
181
+                        $name = $keeper->getName().'::'.$name;
182 182
                     }
183 183
                     // check keeper
184 184
                     $this->reflection->getName() === $linker->getName() || $this->propertyKeepers[$name] = $linker;
Please login to merge, or discard this patch.