Passed
Push — master ( 4dc265...7fac60 )
by Mantas
52s
created
src/Code/Converters/VttConverter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
         $parts = explode('.', $corrected_time);
95 95
         
96 96
         // parts[0] could be mm:ss or hh:mm:ss format -> always use hh:mm:ss
97
-        $parts[0] = substr_count($parts[0], ':') == 2 ? $parts[0] : '00:'.$parts[0];
97
+        $parts[0] = substr_count($parts[0], ':') == 2 ? $parts[0] : '00:' . $parts[0];
98 98
 
99 99
         if (!isset($parts[1])) {
100 100
             throw new UserException("Time doesn't have milliseconds: " . $vtt_time);
Please login to merge, or discard this patch.