Passed
Push — master ( 261063...a94667 )
by Mantas
49s
created
src/Code/Converters/SccConverter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
     {
146 146
         $time = $internal_time - ($text_bytes / 2) / self::$fps;
147 147
         $parts = explode('.', $time);
148
-        $whole = (int) $parts[0];
148
+        $whole = (int)$parts[0];
149 149
         $decimal = isset($parts[1]) ? (float)('0.' . $parts[1]) : 0.0;
150 150
         $frame = round($decimal * self::$fps);
151 151
         $frame = min($frame, floor(self::$fps)); // max 29
Please login to merge, or discard this patch.