@@ -109,6 +109,6 @@ |
||
| 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 | } |
@@ -913,7 +913,7 @@ |
||
| 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' => 'Ó', |
@@ -97,7 +97,10 @@ |
||
| 97 | 97 | foreach ($lines as $line) { |
| 98 | 98 | foreach (self::$allowedSeparators as $delimiter) { |
| 99 | 99 | $count = count(explode($delimiter, $line)); |
| 100 | - if ($count < 2) continue; // delimiter not found in line, minimum 2 cols (timestamp + text) |
|
| 100 | + if ($count < 2) { |
|
| 101 | + continue; |
|
| 102 | + } |
|
| 103 | + // delimiter not found in line, minimum 2 cols (timestamp + text) |
|
| 101 | 104 | |
| 102 | 105 | if (empty($results[$delimiter])) { |
| 103 | 106 | $results[$delimiter] = []; |