Completed
Push — master ( a610f4...161f89 )
by Ondřej
07:39
created
src/Ivory/Utils/StringUtils.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
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>,
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.