@@ -25,7 +25,7 @@ public function testProcessWithMissingParameter()
25
25
$ container = new ContainerBuilder ();
26
26
27
27
$ container ->register ('example ' )
28
- ->addTag ('auto_alias ' , array ('format ' => '%non_existing%.example ' ));
28
+ ->addTag ('auto_alias ' , array ('format ' => '%non_existing%.example ' ));
29
29
30
30
$ pass = new AutoAliasServicePass ();
31
31
$ pass ->process ($ container );
@@ -39,7 +39,7 @@ public function testProcessWithMissingFormat()
39
39
$ container = new ContainerBuilder ();
40
40
41
41
$ container ->register ('example ' )
42
- ->addTag ('auto_alias ' , array ());
42
+ ->addTag ('auto_alias ' , array ());
43
43
$ container ->setParameter ('existing ' , 'mysql ' );
44
44
45
45
$ pass = new AutoAliasServicePass ();
@@ -51,7 +51,7 @@ public function testProcessWithNonExistingAlias()
51
51
$ container = new ContainerBuilder ();
52
52
53
53
$ 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 ' ));
55
55
$ container ->setParameter ('existing ' , 'mysql ' );
56
56
57
57
$ pass = new AutoAliasServicePass ();
@@ -66,7 +66,7 @@ public function testProcessWithExistingAlias()
66
66
$ container = new ContainerBuilder ();
67
67
68
68
$ 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 ' ));
70
70
71
71
$ container ->register ('mysql.example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassMysql ' );
72
72
$ container ->setParameter ('existing ' , 'mysql ' );
@@ -84,7 +84,7 @@ public function testProcessWithManualAlias()
84
84
$ container = new ContainerBuilder ();
85
85
86
86
$ 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 ' ));
88
88
89
89
$ container ->register ('mysql.example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassMysql ' );
90
90
$ container ->register ('mariadb.example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassMariadb ' );
0 commit comments