Passed
Branch master (1b390a)
by Nicolas
05:25
created
lib/Solidifier/Reporters/HTMLReporter.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         $prettyPrint = new Standard();
22 22
         
23 23
         $this->content = $this->twig->render(
24
-           'report.html.twig',
24
+            'report.html.twig',
25 25
             array(
26 26
                 'project' => 'Solidifier',
27 27
                 'defects' => $this->sortDefectsByNamespace($defects),
Please login to merge, or discard this patch.
lib/Solidifier/Visitors/Encapsulation/EncapsulationViolation.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,11 +20,11 @@
 block discarded – undo
20 20
         {
21 21
             $this->privateAttributes = array();
22 22
             $this->publicMethods = array();
23
-        } 
23
+        }
24 24
         elseif($node instanceof Property)
25 25
         {
26 26
             $this->enterProperty($node);
27
-        } 
27
+        }
28 28
         elseif($node instanceof ClassMethod)
29 29
         {
30 30
             $this->enterClassMethod($node);
Please login to merge, or discard this patch.
lib/Solidifier/Visitors/GetterSetter/FluidSetters.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
                 && $this->currentMethodState->isValid() === false)
73 73
                 {
74 74
                     $this->dispatch(
75
-                       new NotFluidSetter($this->currentObjectType, $node)
75
+                        new NotFluidSetter($this->currentObjectType, $node)
76 76
                     );
77 77
                 }
78 78
             }
Please login to merge, or discard this patch.
lib/Solidifier/ConfigurationHandler.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
                     }            
104 104
                 }
105 105
                 
106
-               return $visitor;
106
+                return $visitor;
107 107
             },
108 108
             
109 109
             'dependency.interfaceSegregation' => function(array $config) {
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     }
46 46
     
47 47
     private function initializeVisitors()
48
-    {        
48
+    {
49 49
         $this->visitors = array(
50 50
                         
51 51
             'property.public' => function(array $config) {
Please login to merge, or discard this patch.