| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class AfterFileAnalysisHookDecorator implements AfterFileAnalysis |
||
| 13 | { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | private $hook; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param string $hook The user-defined hook class name. |
||
| 22 | */ |
||
| 23 | public function __construct(string $hook) |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param AfterFileAnalysisEvent $event The event triggered when the analysis of a file is done. |
||
| 30 | */ |
||
| 31 | public function onAfterFileAnalysis(AfterFileAnalysisEvent $event): void |
||
| 36 |