Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function namespaceAndKeyProvider() { |
||
25 | $argLists = array(); |
||
26 | |||
27 | $argLists[] = array( '', '' ); |
||
28 | $argLists[] = array( '', 'foo' ); |
||
29 | $argLists[] = array( 'foo', 'foo' ); |
||
30 | $argLists[] = array( 'foo', '' ); |
||
31 | $argLists[] = array( 'foo', 'bar' ); |
||
32 | $argLists[] = array( 'foo bar', 'bar baz' ); |
||
33 | |||
34 | return $argLists; |
||
35 | } |
||
36 | |||
38 |