@@ -59,13 +59,13 @@ public function getValidConfigurationTests()
59
59
array (
60
60
'authenticators ' => array ('authenticator1 ' , 'authenticator2 ' ),
61
61
'provider ' => 'some_provider ' ,
62
- 'entry_point ' => 'the_entry_point '
62
+ 'entry_point ' => 'the_entry_point ' ,
63
63
),
64
64
array (
65
65
'authenticators ' => array ('authenticator1 ' , 'authenticator2 ' ),
66
66
'provider ' => 'some_provider ' ,
67
- 'entry_point ' => 'the_entry_point '
68
- )
67
+ 'entry_point ' => 'the_entry_point ' ,
68
+ ),
69
69
);
70
70
71
71
// testing xml config fix: authenticator -> authenticators
@@ -76,7 +76,7 @@ public function getValidConfigurationTests()
76
76
array (
77
77
'authenticators ' => array ('authenticator1 ' , 'authenticator2 ' ),
78
78
'entry_point ' => null ,
79
- )
79
+ ),
80
80
);
81
81
82
82
return $ tests ;
@@ -88,7 +88,7 @@ public function getInvalidConfigurationTests()
88
88
89
89
// testing not empty
90
90
$ tests [] = array (
91
- array ('authenticators ' => array ())
91
+ array ('authenticators ' => array ()),
92
92
);
93
93
94
94
return $ tests ;
@@ -108,7 +108,7 @@ public function testBasicCreate()
108
108
$ this ->assertEquals (array (
109
109
'index_0 ' => array (new Reference ('authenticator123 ' )),
110
110
'index_1 ' => new Reference ('my_user_provider ' ),
111
- 'index_2 ' => 'my_firewall '
111
+ 'index_2 ' => 'my_firewall ' ,
112
112
), $ providerDefinition ->getArguments ());
113
113
114
114
$ listenerDefinition = $ container ->getDefinition ('security.authentication.listener.guard.my_firewall ' );
@@ -153,7 +153,6 @@ public function testMultipleAuthenticatorsRequiresEntryPoint()
153
153
$ this ->executeCreate ($ config , null );
154
154
}
155
155
156
-
157
156
public function testCreateWithEntryPoint ()
158
157
{
159
158
// any existing default entry point is used
0 commit comments