@@ -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 ();
@@ -65,7 +65,7 @@ public function testProcessWithExistingAlias()
65
65
$ container = new ContainerBuilder ();
66
66
67
67
$ container ->register ('example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassDefault ' )
68
- ->addTag ('auto_alias ' , array ('format ' => '%existing%.example ' ));
68
+ ->addTag ('auto_alias ' , array ('format ' => '%existing%.example ' ));
69
69
70
70
$ container ->register ('mysql.example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassMysql ' );
71
71
$ container ->setParameter ('existing ' , 'mysql ' );
@@ -83,7 +83,7 @@ public function testProcessWithManualAlias()
83
83
$ container = new ContainerBuilder ();
84
84
85
85
$ container ->register ('example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassDefault ' )
86
- ->addTag ('auto_alias ' , array ('format ' => '%existing%.example ' ));
86
+ ->addTag ('auto_alias ' , array ('format ' => '%existing%.example ' ));
87
87
88
88
$ container ->register ('mysql.example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassMysql ' );
89
89
$ container ->register ('mariadb.example ' , 'Symfony\Component\DependencyInjection\Tests\Compiler\ServiceClassMariaDb ' );
0 commit comments