Completed
Push — master ( 98f502...267c50 )
by Alexpts
01:26
created
src/PTS/Tools/RegExpFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace PTS\Tools;
5 5
 
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 {
8 8
     public function create(string $pattern, string $replacement = ''): callable
9 9
     {
10
-        return function ($value) use ($pattern, $replacement): string {
10
+        return function($value) use ($pattern, $replacement): string {
11 11
             return preg_replace($pattern, $replacement, $value);
12 12
         };
13 13
     }
Please login to merge, or discard this patch.