Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
10 | public function actions() |
||
11 | { |
||
12 | return [ |
||
13 | 'client-confirm-email' => [ |
||
14 | 'class' => ConfirmEmail::class, |
||
15 | 'actionAttributeName' => 'what', |
||
16 | 'actionAttributeValue' => 'clientConfirmEmail', |
||
17 | 'usernameAttributeName' => 'client', |
||
18 | ], |
||
19 | 'contact-confirm-email' => [ |
||
20 | 'class' => ConfirmEmail::class, |
||
21 | 'actionAttributeName' => 'what', |
||
22 | 'actionAttributeValue' => 'contactConfirmEmail', |
||
23 | 'usernameAttributeName' => 'client', |
||
24 | ], |
||
25 | ]; |
||
26 | } |
||
27 | } |
||
28 |