Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | public function provideArrayCommand() |
||
34 | { |
||
35 | return [ |
||
36 | [['username' => 'User', 'email' => '[email protected]'], 'User', '[email protected]'], |
||
37 | [['username' => 'User', 'email' => '[email protected]', 'other_key' => 1], 'User', '[email protected]'], |
||
38 | [['email' => '[email protected]'], null, '[email protected]'], |
||
39 | ]; |
||
40 | } |
||
41 | } |
||
42 |