Completed
Pull Request — master (#12)
by
unknown
03:55
created
DependencyInjection/Security/UserProvider/InMemoryApiFactory.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
 
12 12
 namespace OsLab\SecurityApiBundle\DependencyInjection\Security\UserProvider;
13 13
 
14
-use Symfony\Component\DependencyInjection\ContainerBuilder;
15 14
 use Symfony\Bundle\SecurityBundle\DependencyInjection\Security\UserProvider\UserProviderFactoryInterface;
16 15
 use Symfony\Component\Config\Definition\Builder\NodeDefinition;
16
+use Symfony\Component\DependencyInjection\ContainerBuilder;
17 17
 use Symfony\Component\DependencyInjection\DefinitionDecorator;
18 18
 use Symfony\Component\DependencyInjection\Reference;
19 19
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
                         ->children()
75 75
                             ->scalarNode('password')->defaultValue(uniqid('', true))->end()
76 76
                             ->arrayNode('roles')
77
-                                ->beforeNormalization()->ifString()->then(function ($v) {
77
+                                ->beforeNormalization()->ifString()->then(function($v) {
78 78
                                     return preg_split('/\s*,\s*/', $v);
79 79
                                 })
80 80
                                 ->end()
Please login to merge, or discard this patch.