| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function getCallableDescriptionDataProvider(): array |
||
| 13 | { |
||
| 14 | return [ |
||
| 15 | [ |
||
| 16 | 'string-processor', |
||
| 17 | 'string-processor' |
||
| 18 | ], |
||
| 19 | [ |
||
| 20 | [ |
||
| 21 | $this, |
||
| 22 | 'getCallableDescriptionDataProvider' |
||
| 23 | ], |
||
| 24 | get_class($this) . '::getCallableDescriptionDataProvider' |
||
| 25 | ], |
||
| 26 | [ |
||
| 27 | [ |
||
| 28 | 'class-name', |
||
| 29 | 'static-method-name' |
||
| 30 | ], |
||
| 31 | 'class-name::static-method-name' |
||
| 32 | ] |
||
| 61 |