Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
23 | protected function setUp() |
||
24 | { |
||
25 | $this->parameter = [ |
||
26 | 'driver' => [ |
||
27 | // SOME ATTRIBUTES |
||
28 | ], |
||
29 | 'user' => [ |
||
30 | 'baseDn' => 'ou=Groups,dc=example,dc=com', |
||
31 | 'filter' => '(attr0=value0)', |
||
32 | 'attributes' => [ |
||
33 | [ |
||
34 | 'ldap_attr' => 'uid', |
||
35 | 'user_method' => 'setUsername', |
||
36 | ], |
||
37 | ], |
||
38 | ], |
||
39 | ]; |
||
40 | $this->event = new SwitchParameterSetEvent($this->parameter); |
||
41 | } |
||
51 |