Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | function generateAddressFixture() |
||
12 | { |
||
13 | return array( |
||
14 | // Random string with length between 8 and 16 |
||
15 | substr(str_shuffle('abcdefghijklmnopqrstuvwxyz'), 0, rand(8, 16)), |
||
16 | // Random five digit number |
||
17 | sprintf('%05d', rand(1, 99999)), |
||
18 | // Random string with length between 8 and 16 |
||
19 | substr(str_shuffle('abcdefghijklmnopqrstuvwxyz'), 0, rand(8, 16)), |
||
20 | // Random string with length 2 |
||
21 | substr(str_shuffle('abcdefghijklmnopqrstuvwxyz'), 0, 2) |
||
22 | ); |
||
23 | } |
||
24 | |||
36 |