Passed
Push — master ( b0fbbb...e842b7 )
by Jeroen
01:46
created
src/Diglett.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
     public function getText(string $selector): ?string 
86 86
     {
87 87
         $attribute = null;
88
-        $selector = preg_replace_callback('/\{(.*?)\}$/', function ($matches) use (&$attribute) {
88
+        $selector = preg_replace_callback('/\{(.*?)\}$/', function($matches) use (&$attribute) {
89 89
             if (count($matches) > 1)
90 90
             {
91 91
                 $attribute = $matches[1];
Please login to merge, or discard this patch.
src/CssFilterParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
                     $functions[] = new $cssFilters[$func['function']](preg_split('/\s*,\s*/', $func['data']));
32 32
                 }
33 33
 
34
-                $selector['functions']  = $functions;
34
+                $selector['functions'] = $functions;
35 35
             }
36 36
 
37 37
             $result[] = $selector;
Please login to merge, or discard this patch.