Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | public function provideConfigs(): iterable |
||
43 | { |
||
44 | yield [null, []]; |
||
45 | yield [[], []]; |
||
46 | yield [['auth' => []], []]; |
||
47 | yield [['auth' => [ |
||
48 | 'plugins' => [], |
||
49 | ]], []]; |
||
50 | yield [['auth' => [ |
||
51 | 'plugins' => [ |
||
52 | 'services' => $plugins = [ |
||
53 | 'foo' => $this->prophesize(AuthenticationPluginInterface::class)->reveal(), |
||
54 | 'bar' => $this->prophesize(AuthenticationPluginInterface::class)->reveal(), |
||
55 | ], |
||
56 | ], |
||
57 | ]], $plugins]; |
||
58 | } |
||
60 |