Passed
Pull Request — master (#2)
by Alex
02:09 queued 31s
created
src/Module.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
 
44 44
         if (
45 45
             null === $container
46
-            || ! $container instanceof ContainerInterface
47
-            || ! $container->has(ImportCommand::class)
46
+            || !$container instanceof ContainerInterface
47
+            || !$container->has(ImportCommand::class)
48 48
         ) {
49 49
             return;
50 50
         }
@@ -59,6 +59,6 @@  discard block
 block discarded – undo
59 59
      */
60 60
     public function getConfig(): array
61 61
     {
62
-        return require __DIR__ . '/../config/module.config.php';
62
+        return require __DIR__.'/../config/module.config.php';
63 63
     }
64 64
 }
Please login to merge, or discard this patch.
src/Factory/Service/LoaderFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,13 +29,13 @@  discard block
 block discarded – undo
29 29
 
30 30
         $loader = new Loader();
31 31
 
32
-        if (! empty($options['directories'])) {
32
+        if (!empty($options['directories'])) {
33 33
             foreach ($options['directories'] as $directory) {
34 34
                 $loader->loadFromDirectory($directory);
35 35
             }
36 36
         }
37 37
 
38
-        if (! empty($options['fixtures'])) {
38
+        if (!empty($options['fixtures'])) {
39 39
             foreach ($this->getFixtures($container, $options['fixtures'], $requestedName) as $fixture) {
40 40
                 $loader->addFixture($fixture);
41 41
             }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
                 }
69 69
                 $fixture = $container->get($fixture);
70 70
             }
71
-            if (! $fixture instanceof FixtureInterface) {
71
+            if (!$fixture instanceof FixtureInterface) {
72 72
                 throw new ServiceNotCreatedException(
73 73
                     sprintf(
74 74
                         'The data fixture must be an object of type \'%s\'; \'%s\' provided in \'%s\'',
Please login to merge, or discard this patch.