Completed
Pull Request — master (#10)
by Andrew
02:56
created
Tests/Unit/Test/MethodNameUnderstandableTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      */
62 62
     protected function getRule()
63 63
     {
64
-        $rule =  new MethodNameUnderstandable();
64
+        $rule = new MethodNameUnderstandable();
65 65
         $rule->addProperty('number', '3');
66 66
         $rule->addProperty('regex', '([A-Z])');
67 67
 
Please login to merge, or discard this patch.
Tests/Unit/Test/MethodNumberOfAssertsTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
      */
60 60
     protected function getRule()
61 61
     {
62
-        $rule =  new MethodNumberOfAsserts();
62
+        $rule = new MethodNumberOfAsserts();
63 63
         $rule->addProperty('number', '3');
64 64
         $rule->addProperty('names', 'assert');
65 65
         $rule->addProperty('delimiter', ',');
Please login to merge, or discard this patch.
Tests/Unit/CleanCode/MethodOneTryCatchTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
      */
78 78
     protected function getRule()
79 79
     {
80
-        $rule =  new MethodOneTryCatch();
80
+        $rule = new MethodOneTryCatch();
81 81
         $rule->addProperty('delimiter', ',');
82 82
         $rule->addProperty('allowedChildren', 'catch,finally');
83 83
 
Please login to merge, or discard this patch.
Tests/Unit/CleanCode/ClassNameSingleResponsibilityTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
      */
46 46
     protected function getRule()
47 47
     {
48
-        $rule =  new ClassNameSingleResponsibility();
48
+        $rule = new ClassNameSingleResponsibility();
49 49
         $rule->addProperty('delimiter', ',');
50 50
         $rule->addProperty('suffixes', 'Manager,Handler');
51 51
 
Please login to merge, or discard this patch.