Passed
Push — develop ( 7f7132...7bc049 )
by Greg
05:51
created
app/PHP.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -65,12 +65,12 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.