Passed
Push — main ( dc6bd3...ee2116 )
by Breno
01:45
created
src/Definition/Build/ReferenceDefinition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@
 block discarded – undo
36 36
         $this->id = $id;
37 37
         $this->fn = $fn;
38 38
 
39
-        if (! $this->fn instanceof Closure) {
40
-            $this->fn = function ($instance, ContainerInterface $c) {
39
+        if (!$this->fn instanceof Closure) {
40
+            $this->fn = function($instance, ContainerInterface $c) {
41 41
                 return $instance;
42 42
             };
43 43
         }
Please login to merge, or discard this patch.
src/Definition/Build/ClassDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 
68 68
     public function getConcrete(ContainerInterface $container)
69 69
     {
70
-        if (! $this->classResolver instanceof ClassResolver) {
70
+        if (!$this->classResolver instanceof ClassResolver) {
71 71
             throw new ContainerException('No ClassResolver implementation has been set.');
72 72
         }
73 73
 
Please login to merge, or discard this patch.
src/Autowiring/Attributes/AttributesInjection.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
         /** @var Inject|null $inject */
66 66
         $inject = $this->reflector->getFirstAttribute($subject, Inject::class);
67
-        if (! $inject instanceof Inject) {
67
+        if (!$inject instanceof Inject) {
68 68
             return null;
69 69
         }
70 70
 
Please login to merge, or discard this patch.