Passed
Push — master ( b23da5...cc1845 )
by Amin
04:10
created
src/HLSKeyInfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
src/Utiles.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.