Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
10 | public function escapeStringProvider() |
||
11 | { |
||
12 | return array( |
||
13 | array('[email protected]', '[email protected]'), |
||
14 | array('??pseudo?:pass?\'special?@', '?pseudo:pass\'special@'), |
||
15 | array('nothingtodo', 'nothingtodo'), |
||
16 | array('??', '?'), |
||
17 | array('?:', ':'), |
||
18 | array('?@', '@'), |
||
19 | array('?\'', '\''), |
||
20 | array('????', '??'), |
||
21 | array('', ''), |
||
22 | array('', null), |
||
23 | ); |
||
24 | } |
||
25 | |||
43 |