Skip to content

Commit

Permalink
Fix CS, upadte the README
Browse files Browse the repository at this point in the history
  • Loading branch information
vicb committed Jun 4, 2012
1 parent acb196c commit 4e1eeaf
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
@@ -1,3 +1,11 @@
- 2012-06-04
* Revert PR #46. It is still possible to override parameter classes but in a proper way.
* Some default options for exchanges declared in the "producers" config section
have changed to match the defaults of exchanges declared in the "consumers" section.
The affected settings are:
* `durable` was changed from `false` to `true`,
* `auto_delete` was changed from `true` to `false`.

- 2012-05-29 - 2012-05-29
* Merged PR #46 adding compiler passes for the configuration. Now the parameter classes can be overriden. * Merged PR #46 adding compiler passes for the configuration. Now the parameter classes can be overriden.
* Treats queue arguments as a variableNode in the configuration to allow declaring HA Queues. * Treats queue arguments as a variableNode in the configuration to allow declaring HA Queues.
Expand Down
1 change: 0 additions & 1 deletion DependencyInjection/OldSoundRabbitMqExtension.php
Expand Up @@ -29,7 +29,6 @@ class OldSoundRabbitMqExtension extends Extension


private $channelIds = array(); private $channelIds = array();



public function load(array $configs, ContainerBuilder $container) public function load(array $configs, ContainerBuilder $container)
{ {
$this->container = $container; $this->container = $container;
Expand Down
1 change: 0 additions & 1 deletion OldSoundRabbitMqBundle.php
Expand Up @@ -4,7 +4,6 @@


use Symfony\Component\HttpKernel\Bundle\Bundle; use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\ContainerBuilder;
use OldSound\RabbitMqBundle\DependencyInjection\Compiler\LoadDataCollectorCompilerPass;


class OldSoundRabbitMqBundle extends Bundle class OldSoundRabbitMqBundle extends Bundle
{ {
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -56,8 +56,8 @@ Add the RabbitMqBundle to your application's kernel:


### Warning - BC Breaking Changes ### ### Warning - BC Breaking Changes ###


* Since 2012-06-02 Some default options for exchanges declared in the "producers" config section * Since 2012-06-04 Some default options for exchanges declared in the "producers" config section
have changed to match the defaults of exchanges declared under the "consumers" section. have changed to match the defaults of exchanges declared in the "consumers" section.
The affected settings are: The affected settings are:


* `durable` was changed from `false` to `true`, * `durable` was changed from `false` to `true`,
Expand Down
Expand Up @@ -9,7 +9,6 @@
use OldSound\RabbitMqBundle\DependencyInjection\OldSoundRabbitMqExtension; use OldSound\RabbitMqBundle\DependencyInjection\OldSoundRabbitMqExtension;
use Symfony\Component\DependencyInjection\Reference; use Symfony\Component\DependencyInjection\Reference;



class OldSoundRabbitMqExtensionTest extends \PHPUnit_Framework_TestCase class OldSoundRabbitMqExtensionTest extends \PHPUnit_Framework_TestCase
{ {
public function testFooConnectionDefinition() public function testFooConnectionDefinition()
Expand Down

0 comments on commit 4e1eeaf

Please sign in to comment.