@@ -176,7 +176,7 @@ |
||
176 | 176 | */ |
177 | 177 | private function call(): callable |
178 | 178 | { |
179 | - return function ($log) { |
|
179 | + return function($log) { |
|
180 | 180 | if (false !== strpos($log, $this->search_for) && !in_array($log, $this->segments)) { |
181 | 181 | array_push($this->segments, $log); |
182 | 182 | if ($this->key_rotation_period === 1 || (count($this->segments) % $this->key_rotation_period) === 0) { |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public static function concatKeyValue(array &$array, string $glue = ""): void |
32 | 32 | { |
33 | - array_walk($array, function (&$value, $key) use ($glue) { |
|
33 | + array_walk($array, function(&$value, $key) use ($glue) { |
|
34 | 34 | $value = "$key$glue$value"; |
35 | 35 | }); |
36 | 36 | } |