@@ -10,7 +10,7 @@ |
||
| 10 | 10 | * |
| 11 | 11 | * @param string $pattern |
| 12 | 12 | * @param callable $callback |
| 13 | - * @param string|string[] $subject |
|
| 13 | + * @param string $subject |
|
| 14 | 14 | * @param int $limit |
| 15 | 15 | * @param int|null $count |
| 16 | 16 | * @return string|string[] depending on whether <tt>$subject</tt> is <tt>string</tt> or <tt>array</tt>, |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | callable $callback, |
| 22 | 22 | $subject, |
| 23 | 23 | int $limit = -1, |
| 24 | - int &$count = null |
|
| 24 | + int & $count = null |
|
| 25 | 25 | ) |
| 26 | 26 | { |
| 27 | 27 | if (is_array($subject)) { |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | callable $callback, |
| 41 | 41 | string $subject, |
| 42 | 42 | int $limit = -1, |
| 43 | - int &$count = null |
|
| 43 | + int & $count = null |
|
| 44 | 44 | ): string |
| 45 | 45 | { |
| 46 | 46 | $count = 0; |