Passed
Push — master ( 216e58...70c415 )
by Paweł
02:23
created
src/Items/HrefLang.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
                 )
73 73
                 ->setRequired(true)
74 74
             ;
75
-            $hrefAttribute =  $baseType->getAttribute('href');
75
+            $hrefAttribute = $baseType->getAttribute('href');
76 76
 
77 77
             if (null !== $hrefAttribute) {
78 78
                 $hrefAttribute->setRequired(true);
Please login to merge, or discard this patch.
src/Helpers/Url.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     {
33 33
         $encodedUrl = preg_replace_callback(
34 34
             '%[^:/@?&=#]+%usD',
35
-            function ($matches) {
35
+            function($matches) {
36 36
                 return rawurlencode($matches[0]);
37 37
             },
38 38
             $url
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
         if (isset($url['query']) && is_string($url['query']) && '' !== $url['query']) {
83 83
             parse_str($url['query'], $query);
84
-            array_walk($query, function (&$val, &$var) {
84
+            array_walk($query, function(&$val, &$var) {
85 85
                 $var = rawurlencode($var);
86 86
                 $val = rawurlencode($val);
87 87
             });
Please login to merge, or discard this patch.