| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function it_can_get_ngram_from_an_array_without_cycling() |
||
| 16 | { |
||
| 17 | $result = [ |
||
| 18 | ['h', 'e', 'l', 'l'], |
||
| 19 | ['e', 'l', 'l', 'o'], |
||
| 20 | ['l', 'l', 'o', ' '], |
||
| 21 | ['l', 'o', ' ', 'w'], |
||
| 22 | ['o', ' ', 'w', 'o'], |
||
| 23 | [' ', 'w', 'o', 'r'], |
||
| 24 | ['w', 'o', 'r', 'l'], |
||
| 25 | ['o', 'r', 'l', 'd'], |
||
| 26 | ['r', 'l', 'd', 'h'], |
||
| 27 | ['l', 'd', 'h', 'e'], |
||
| 34 |