Passed
Push — master ( 0e1b55...4f9081 )
by Julien
01:38 queued 10s
created
src/Builder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         $this->extractConstructorArguments($staticFactoryMethod);
38 38
 
39 39
         $missingConstructorArguments = transform($this->constructorArguments)
40
-            ->remove(static function (string $key) use ($arguments) {
40
+            ->remove(static function(string $key) use ($arguments) {
41 41
                 return \array_key_exists($key, $arguments);
42 42
             })
43 43
             ->toArray()
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      */
60 60
     final protected function setArgument($name, $value)
61 61
     {
62
-        if (! \array_key_exists($name, $this->arguments)) {
62
+        if (!\array_key_exists($name, $this->arguments)) {
63 63
             throw new \InvalidArgumentException("There is no argument $name");
64 64
         }
65 65
         $this->arguments[$name] = $value;
Please login to merge, or discard this patch.