Completed
Push — master ( c80778...41555d )
by Martijn
02:09
created
src/Vanderlee/Comprehend/Parser/Output/AssignTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function assignTo(&$variable)
38 38
     {
39
-        $this->assignCallbacks[] = function ($text) use (&$variable) {
39
+        $this->assignCallbacks[] = function($text) use (&$variable) {
40 40
             $variable = $text;
41 41
         };
42 42
 
Please login to merge, or discard this patch.
src/Vanderlee/Comprehend/Match/Match.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
      * @param mixed $default
70 70
      * @return mixed
71 71
      */
72
-    public function getResult($name =  null, $default = null)
72
+    public function getResult($name = null, $default = null)
73 73
     {
74 74
         return $default;
75 75
     }
Please login to merge, or discard this patch.
src/Vanderlee/Comprehend/Core/Context/CaseSensitiveContextTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
     public function pushCaseSensitivity($case_sensitive = true)
10 10
     {
11
-        array_push($this->case_sensitivity, (bool)$case_sensitive);
11
+        array_push($this->case_sensitivity, (bool) $case_sensitive);
12 12
     }
13 13
 
14 14
     public function popCaseSensitivity()
Please login to merge, or discard this patch.