| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Unit\Chekote\NounStore\Key; |
||
| 35 | public function nouns() |
||
| 36 | { |
||
| 37 | return [ |
||
| 38 | ['Customer', ['Customer' ]], |
||
| 39 | ["Customer's Car", ['Customer', 'Car' ]], |
||
| 40 | ["8th Customer's Car", ['8th Customer', 'Car' ]], |
||
| 41 | ["Customer's 2nd Car", ['Customer', '2nd Car' ]], |
||
| 42 | ["7th Customer's 4th Car", ['7th Customer', '4th Car' ]], |
||
| 43 | ["7th Customer's 4th Car's Wheel", ['7th Customer', '4th Car', 'Wheel']], |
||
| 44 | ]; |
||
| 47 |