| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class GenerateStatistics extends Action |
||
| 14 | { |
||
| 15 | /** @var TokenParser */ |
||
| 16 | private $parser; |
||
| 17 | |||
| 18 | /** @var StatisticsProcessor */ |
||
| 19 | private $processor; |
||
| 20 | |||
| 21 | public function __construct(TokenParser $parser, StatisticsProcessor $processor) |
||
| 22 | { |
||
| 23 | $this->parser = $parser; |
||
| 24 | $this->processor = $processor; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** @throws \LogicException If the command is missing */ |
||
| 28 | public function generate(CodeFinder $finder, string $filePath): void |
||
| 36 | } |
||
| 37 | } |
||
| 38 |