Completed
Pull Request — master (#1)
by Christopher
01:31
created
src/BitMask.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     public function getKey()
82 82
     {
83 83
         $value = $this->value;
84
-        $f = array_filter(static::toArray(), function (
84
+        $f = array_filter(static::toArray(), function(
85 85
             /* @noinspection PhpUnusedParameterInspection needed for function def */ $key) use (&$value) {
86 86
             $isSet = $value & 1;
87 87
             $value = $value >> 1;
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         }
106 106
         return $name . '[' . PHP_EOL .
107 107
             $ret .
108
-            ']'. PHP_EOL;
108
+            ']' . PHP_EOL;
109 109
     }
110 110
 
111 111
     public function getName()
Please login to merge, or discard this patch.