Passed
Push — master ( 0dd309...8d4b2b )
by Mantas
48s
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
         $only_seconds = strtotime("1970-01-01 {$parts[0]} UTC");
100 100
         $milliseconds = (float)('0.' . $parts[1]);
Please login to merge, or discard this patch.