Passed
Push — main ( 7d673e...4d0d79 )
by Daniel
06:41 queued 02:38
created
src/DependencyInjection/CompilerPass/FlysystemCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
                         $attributes['config'] ?? []
40 40
                     ]);
41 41
                 $serviceName = sprintf('api_components.filesystem.%s', $attributes['alias']);
42
-                $container->setDefinition($serviceName, $definition)->addTag(FilesystemProvider::FILESYSTEM_TAG, [ 'alias' => $attributes['alias'] ]);
42
+                $container->setDefinition($serviceName, $definition)->addTag(FilesystemProvider::FILESYSTEM_TAG, ['alias' => $attributes['alias']]);
43 43
             }
44 44
         }
45 45
     }
Please login to merge, or discard this patch.
src/Flysystem/FilesystemProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,6 +41,6 @@
 block discarded – undo
41 41
 
42 42
     public function getFilesystem(string $name, array $config = []): ?Filesystem
43 43
     {
44
-        return $this->filesystems[$name] ?? $this->createFilesystem($name,$config);
44
+        return $this->filesystems[$name] ?? $this->createFilesystem($name, $config);
45 45
     }
46 46
 }
Please login to merge, or discard this patch.