| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 40 | public function provideValuePathTestData(): array |
||
| 41 | { |
||
| 42 | return [ |
||
| 43 | [ |
||
| 44 | 'pathExpression' => 'paragraphs', |
||
| 45 | 'expectedLength' => 1 |
||
| 46 | ], |
||
| 47 | [ |
||
| 48 | 'pathExpression' => 'paragraphs.1-title', |
||
| 49 | 'expectedLength' => 2 |
||
| 50 | ], |
||
| 51 | [ |
||
| 52 | 'pathExpression' => 'slideshows.2-teasers.3-images', |
||
| 53 | 'expectedLength' => 3 |
||
| 54 | ] |
||
| 58 |