Passed
Push — master ( 4dc265...7fac60 )
by Mantas
52s
created
src/Code/Converters/SmiConverter.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,6 +109,6 @@
 block discarded – undo
109 109
      */
110 110
     protected static function internalTimeToFormat($internal_time)
111 111
     {
112
-       return round($internal_time * 1000);
112
+        return round($internal_time * 1000);
113 113
     }
114 114
 }
Please login to merge, or discard this patch.
src/Code/Converters/SccConverter.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -913,7 +913,7 @@
 block discarded – undo
913 913
         '91bf' => 'û',
914 914
     ];
915 915
 
916
-     private static $extended_chars = [
916
+        private static $extended_chars = [
917 917
         '9220' => 'Á',
918 918
         '92a1' => 'É',
919 919
         '92a2' => 'Ó',
Please login to merge, or discard this patch.
src/Code/Converters/TtmlConverter.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@
 block discarded – undo
215 215
         $internal_format = [];
216 216
 
217 217
         foreach ($xml->Paragraph as $paragraph) {
218
-             $subtitle = [
218
+                $subtitle = [
219 219
                 'start' => (int)$paragraph->StartMilliseconds / 1000,
220 220
                 'end' => (int)$paragraph->EndMilliseconds / 1000,
221 221
                 'lines' => self::getLinesFromTextWithBr($paragraph->Text->asXML()),
Please login to merge, or discard this patch.