Completed
Pull Request — master (#3)
by Jacob
02:20
created
DependencyInjection/ServiceLoader/MetadataDrivers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     {
26 26
         $definition = new Definition(
27 27
             Utility::getLibraryClass('Metadata\Driver\FileLocator'),
28
-            [ $modelDir, $mixinDir ]
28
+            [$modelDir, $mixinDir]
29 29
         );
30 30
         $definition->setPublic(false);
31 31
         return $definition;
Please login to merge, or discard this patch.
DependencyInjection/Utility.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     /**
20 20
      * The bundle root namespace.
21 21
      */
22
-    const BUNDLE_NS  = 'As3\\Bundle\\ModlrBundle';
22
+    const BUNDLE_NS = 'As3\\Bundle\\ModlrBundle';
23 23
 
24 24
     /**
25 25
      * The bundle alias.
Please login to merge, or discard this patch.
DependencyInjection/As3ModlrExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         $config = $this->processConfiguration(new Configuration(), $configs);
26 26
 
27 27
         // Load bundle services.
28
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
28
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
29 29
         $loader->load('services.yml');
30 30
 
31 31
         $serviceLoader = new ServiceLoaderManager($container);
Please login to merge, or discard this patch.