Completed
Branch master (85add0)
by Amin
03:13
created
Category
src/AutoRepresentations.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/helpers.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
      *
Please login to merge, or discard this patch.