| Total Complexity | 2 | 
| Total Lines | 24 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 13 | class GenerateDotFile extends Action  | 
            ||
| 14 | { | 
            ||
| 15 | /** @var TokenParser */  | 
            ||
| 16 | private $parser;  | 
            ||
| 17 | |||
| 18 | /** @var GraphvizProcessor */  | 
            ||
| 19 | private $dotProcessor;  | 
            ||
| 20 | |||
| 21 | 15 |     public function __construct(TokenParser $parser, GraphvizProcessor $dotProcessor) { | 
            |
| 24 | 15 | }  | 
            |
| 25 | |||
| 26 | /**  | 
            ||
| 27 | * @throws \LogicException If the command is missing  | 
            ||
| 28 | */  | 
            ||
| 29 | 15 | public function generate(CodeFinder $finder, string $dotFilePath): void  | 
            |
| 39 |