Completed
Pull Request — master (#25)
by Joshua
04:40
created
DependencyInjection/As3ModlrExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         $config = $this->processConfiguration(new Configuration(), $configs);
24 24
 
25 25
         // Load bundle services.
26
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
26
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
27 27
         $loader->load('services.yml');
28 28
 
29 29
         $serviceLoader = new ServiceLoaderManager($container);
Please login to merge, or discard this patch.
DependencyInjection/Compiler/EventSubscribersPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     {
22 22
         $dispatcher = $container->getDefinition(Utility::getAliasedName('event_dispatcher'));
23 23
 
24
-        $sortFunc = function ($a, $b) {
24
+        $sortFunc = function($a, $b) {
25 25
             $a = isset($a['priority']) ? (Integer) $a['priority'] : 0;
26 26
             $b = isset($b['priority']) ? (Integer) $b['priority'] : 0;
27 27
 
Please login to merge, or discard this patch.
DataCollector/MongoDb/PrettyDataCollector.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
                 $grouped[$cursor][count($grouped[$cursor]) - 1][] = $query;
55 55
             } else {
56 56
                 $grouped[$cursor][] = array($query);
57
-                $ordered[] =& $grouped[$cursor][count($grouped[$cursor]) - 1];
57
+                $ordered[] = & $grouped[$cursor][count($grouped[$cursor]) - 1];
58 58
             }
59 59
         }
60 60
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
                     // flush the previous and start a new query
74 74
                     if (!empty($query)) {
75 75
                         if ('.' == $query[0]) {
76
-                            $query  = 'db'.$query;
76
+                            $query = 'db'.$query;
77 77
                         }
78 78
 
79 79
                         $this->data['queries'][$i++] = $query.';';
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
 
174 174
         if (!empty($query)) {
175 175
             if ('.' == $query[0]) {
176
-                $query  = 'db'.$query;
176
+                $query = 'db'.$query;
177 177
             }
178 178
 
179 179
             $this->data['queries'][$i++] = $query.';';
Please login to merge, or discard this patch.
Command/Schema/Create.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
         $types = (null === $type) ? 'all types' : sprintf('model type "%s"', $type);
54 54
 
55 55
         $count = count($this->manager->getIndices($type));
56
-        $output->writeln(sprintf('Creating <info>%s</info> %s for <info>%s</info>',$count, $count == 1 ? 'index' : 'indices', $types));
56
+        $output->writeln(sprintf('Creating <info>%s</info> %s for <info>%s</info>', $count, $count == 1 ? 'index' : 'indices', $types));
57 57
 
58 58
         foreach ($this->manager->getIndices($type) as $index) {
59 59
             $output->writeln(sprintf('    Creating index <info>%s</info> for model <info>%s</info>', $index['name'], $index['model_type']));
Please login to merge, or discard this patch.