| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 15 | final class ProcessCommand implements ProcessInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * ProcessCommand constructor. |
||
| 19 | * |
||
| 20 | * @param FacadeHelperGeneratorInterface $facadeHelperGenerator The facade helper generator interface. |
||
| 21 | */ |
||
| 22 | public function __construct(private FacadeHelperGeneratorInterface $facadeHelperGenerator) |
||
| 23 | { |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Invoke the process. |
||
| 28 | * |
||
| 29 | * This method calls the generate method on the facade helper generator to create the facade helper file. |
||
| 30 | */ |
||
| 31 | public function __invoke(): void |
||
| 34 | } |
||
| 35 | } |
||
| 36 |