@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | if (!defined('PHPUNIT_COMPOSER_INSTALL')) { |
4 | - define('PHPUNIT_COMPOSER_INSTALL', __DIR__ . '/../vendor/autoload.php'); |
|
4 | + define('PHPUNIT_COMPOSER_INSTALL', __DIR__.'/../vendor/autoload.php'); |
|
5 | 5 | } |
6 | 6 | |
7 | 7 | include_once(__DIR__.'/../vendor/autoload.php'); |
@@ -46,8 +46,7 @@ discard block |
||
46 | 46 | if (isset($rabbitMqBundleConfiguration[$type])) { |
47 | 47 | foreach ($rabbitMqBundleConfiguration[$type] as $name => $consumer) { |
48 | 48 | $consumerConfig = isset($config[$type]['individual'][$name]) ? |
49 | - $config[$type]['individual'][$name] : |
|
50 | - $config[$type]['general']; |
|
49 | + $config[$type]['individual'][$name] : $config[$type]['general']; |
|
51 | 50 | |
52 | 51 | $command = $config['commands'][$type]; |
53 | 52 | |
@@ -118,7 +117,7 @@ discard block |
||
118 | 117 | 'stopsignal' => $config['worker']['stopsignal'], |
119 | 118 | 'stopwaitsecs' => $config['worker']['stopwaitsecs'], |
120 | 119 | ], |
121 | - 'command' => [ // todo make this configurable at some point. as for now it's not important... |
|
120 | + 'command' => [// todo make this configurable at some point. as for now it's not important... |
|
122 | 121 | 'console' => '%kernel.root_dir%/../bin/console', |
123 | 122 | 'command' => isset($config['command']['command']) ? $config['command']['command'] : $command, |
124 | 123 | 'arguments' => [ |