@@ -72,7 +72,7 @@ |
||
72 | 72 | |
73 | 73 | $representations[] = $this->addRepresentation($kilobitrate, $width, $height); |
74 | 74 | |
75 | - $heights = array_filter(static::heights, function ($value) use ($height) { |
|
75 | + $heights = array_filter(static::heights, function($value) use ($height) { |
|
76 | 76 | return $value < $height; |
77 | 77 | }); |
78 | 78 |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | use AYazdanpanah\FFMpegStreaming\FFMpeg; |
20 | 20 | use \AYazdanpanah\FFMpegStreaming\Exception\FFMpegExceptionInterface; |
21 | 21 | |
22 | -if (! function_exists('dash')) { |
|
22 | +if (!function_exists('dash')) { |
|
23 | 23 | /** |
24 | 24 | * Auto generate dash MPD file |
25 | 25 | * |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | } |
45 | 45 | } |
46 | 46 | |
47 | -if (! function_exists('hls')) { |
|
47 | +if (!function_exists('hls')) { |
|
48 | 48 | /** |
49 | 49 | * Auto generate HLS M3U8 file |
50 | 50 | * |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | } |
69 | 69 | } |
70 | 70 | |
71 | -if (! function_exists('round_to_even')) { |
|
71 | +if (!function_exists('round_to_even')) { |
|
72 | 72 | /** |
73 | 73 | * Round a number to nearest even number |
74 | 74 | * |