Completed
Push — master ( f484f1...81f598 )
by Matthew
12:47 queued 09:32
created
DependencyInjection/Configuration.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@
 block discarded – undo
31 31
                 ->end()
32 32
                 ->arrayNode('beanstalkd')
33 33
                     ->children()
34
-                       ->scalarNode('host')->end()
35
-                       ->scalarNode('tube')->end()
34
+                        ->scalarNode('host')->end()
35
+                        ->scalarNode('tube')->end()
36 36
                     ->end()
37 37
                 ->end()
38 38
                 ->arrayNode('rabbit_mq')
Please login to merge, or discard this patch.
ORM/JobManager.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
             if ($method) {
131 131
                 $qb->where($qb->expr()->andX(
132 132
                     $qb->expr()->eq('j.workerName', ':workerName'),
133
-                                             $qb->expr()->eq('j.method', ':method')
133
+                                                $qb->expr()->eq('j.method', ':method')
134 134
                 ))
135 135
                     ->setParameter(':method', $method);
136 136
             } else {
Please login to merge, or discard this patch.