Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | class Executor implements ExecutorInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var PhpParserInterface $phpFileParser The php file parser. |
||
21 | */ |
||
22 | private $phpFileParser; |
||
23 | |||
24 | /** |
||
25 | * Executor constructor. |
||
26 | * |
||
27 | * @param PhpParserInterface $phpFileParser The php file parser. |
||
28 | */ |
||
29 | public function __construct( |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function invoke(string $code): string |
||
47 |