| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function provideCreateData() : array |
||
| 42 | { |
||
| 43 | return [ |
||
| 44 | [[], [], [], 0], |
||
| 45 | [[], ['no_whitespace_before_comma_in_array'], [], 1], |
||
| 46 | [['psr1'], [], [], 2], |
||
| 47 | [['psr2'], [], [], 24], |
||
| 48 | [['psr2'], [], ['visibility'], 24], |
||
| 49 | [['psr1', 'psr2'], [], [], 26], |
||
| 50 | [['psr1', 'psr2'], [], ['visibility'], 26], |
||
| 51 | ]; |
||
| 52 | } |
||
| 53 | } |
||
| 54 |