Passed
Push — master ( 697711...2a2aa0 )
by Julien
13:09 queued 09:15
created
src/Validator/XmlSchemaValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         $valid = $xml->schemaValidateSource($this->schema->saveXML());
60 60
 
61 61
         if (!$valid) {
62
-            $this->errors  = $this->convertXmlErrors();
62
+            $this->errors = $this->convertXmlErrors();
63 63
         }
64 64
 
65 65
         \libxml_clear_errors();
Please login to merge, or discard this patch.
src/Builder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
      */
65 65
     final protected function setArgument(string $name, $value): void
66 66
     {
67
-        if (! \array_key_exists($name, $this->arguments)) {
67
+        if (!\array_key_exists($name, $this->arguments)) {
68 68
             throw new \InvalidArgumentException("There is no argument $name");
69 69
         }
70 70
         $this->arguments[$name] = $value;
Please login to merge, or discard this patch.