@@ -25,7 +25,7 @@ public function testProcessWithMissingParameter()
2525 $ container = new ContainerBuilder ();
2626
2727 $ container ->register ('example ' )
28- ->addTag ('auto_alias ' , array ('format ' => '%non_existing%.example ' ));
28+ ->addTag ('auto_alias ' , array ('format ' => '%non_existing%.example ' ));
2929
3030 $ pass = new AutoAliasServicePass ();
3131 $ pass ->process ($ container );
@@ -39,7 +39,7 @@ public function testProcessWithMissingFormat()
3939 $ container = new ContainerBuilder ();
4040
4141 $ container ->register ('example ' )
42- ->addTag ('auto_alias ' , array ());
42+ ->addTag ('auto_alias ' , array ());
4343 $ container ->setParameter ('existing ' , 'mysql ' );
4444
4545 $ pass = new AutoAliasServicePass ();
@@ -51,7 +51,7 @@ public function testProcessWithNonExistingAlias()
5151 $ container = new ContainerBuilder ();
5252
5353 $ container ->register ('example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassDefault ' )
54- ->addTag ('auto_alias ' , array ('format ' => '%existing%.example ' ));
54+ ->addTag ('auto_alias ' , array ('format ' => '%existing%.example ' ));
5555 $ container ->setParameter ('existing ' , 'mysql ' );
5656
5757 $ pass = new AutoAliasServicePass ();
@@ -66,7 +66,7 @@ public function testProcessWithExistingAlias()
6666 $ container = new ContainerBuilder ();
6767
6868 $ container ->register ('example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassDefault ' )
69- ->addTag ('auto_alias ' , array ('format ' => '%existing%.example ' ));
69+ ->addTag ('auto_alias ' , array ('format ' => '%existing%.example ' ));
7070
7171 $ container ->register ('mysql.example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassMysql ' );
7272 $ container ->setParameter ('existing ' , 'mysql ' );
@@ -84,7 +84,7 @@ public function testProcessWithManualAlias()
8484 $ container = new ContainerBuilder ();
8585
8686 $ container ->register ('example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassDefault ' )
87- ->addTag ('auto_alias ' , array ('format ' => '%existing%.example ' ));
87+ ->addTag ('auto_alias ' , array ('format ' => '%existing%.example ' ));
8888
8989 $ container ->register ('mysql.example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassMysql ' );
9090 $ container ->register ('mariadb.example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassMariadb ' );
0 commit comments