Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | class Executor implements ExecutorInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var PhpFileParserInterface $phpFileParser The php file parser. |
||
21 | */ |
||
22 | private $phpFileParser; |
||
23 | |||
24 | public function __construct( |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function execute(string $code): string |
||
40 | } |
||
41 | } |