@@ -65,12 +65,12 @@ |
||
| 65 | 65 | * @return T |
| 66 | 66 | */ |
| 67 | 67 | public static function pregReplace( |
| 68 | - string|array $pattern, |
|
| 69 | - string|array $replacement, |
|
| 70 | - string|array $subject, |
|
| 68 | + string | array $pattern, |
|
| 69 | + string | array $replacement, |
|
| 70 | + string | array $subject, |
|
| 71 | 71 | int $limit = -1, |
| 72 | 72 | int &$count = null |
| 73 | - ): string|array { |
|
| 73 | + ): string | array { |
|
| 74 | 74 | $result = preg_replace($pattern, $replacement, $subject, $limit, $count); |
| 75 | 75 | |
| 76 | 76 | if ($result === null) { |