Passed
Branch master (1b390a)
by Nicolas
05:25
created
lib/Solidifier/Visitors/DependencyInjection/InterfaceSegregation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
         
55 55
         if(isset($this->types[$name]))
56 56
         {
57
-            $objectTypeType= $this->types[$name];
57
+            $objectTypeType = $this->types[$name];
58 58
             
59 59
             if($objectTypeType !== ObjectType::TYPE_INTERFACE)
60 60
             {
Please login to merge, or discard this patch.
lib/Solidifier/Visitors/DependencyInjection/MagicalInstantiation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     {
14 14
         if($node instanceof New_)
15 15
         {
16
-            if(! $node->class instanceof Name)
16
+            if( ! $node->class instanceof Name)
17 17
             {
18 18
                 $this->dispatch(
19 19
                     new \Solidifier\Defects\MagicUsage($node)
Please login to merge, or discard this patch.
lib/Solidifier/EventSubscribers/HTML.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     
54 54
     public function onDefect(Defect $event)
55 55
     {
56
-        if(! isset($this->defects[$this->currentFile]))
56
+        if( ! isset($this->defects[$this->currentFile]))
57 57
         {
58 58
             $this->defects[$this->currentFile] = array();
59 59
         }
Please login to merge, or discard this patch.