| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class ExceptionThread extends AbstractThread |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * Return the name of the method to process during the thread |
||
| 12 | * |
||
| 13 | * @return string |
||
| 14 | */ |
||
| 15 | protected function getMethodName(): string |
||
| 16 | { |
||
| 17 | return 'method'; |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Return the list of dependencies that will be passed as parameters of the method referenced by getMethodName |
||
| 22 | * |
||
| 23 | * @return array |
||
| 24 | */ |
||
| 25 | protected function getDependencies(): array |
||
| 28 | } |
||
| 29 | |||
| 31 |