Total Complexity | 7 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class ExecutionContext extends \Oliverde8\Component\PhpEtl\Model\ExecutionContext |
||
11 | { |
||
12 | protected string $workDir; |
||
13 | |||
14 | public function __construct(array $parameters, FileSystemInterface $fileSystem, LoggerInterface $logger, string $logPath) |
||
15 | { |
||
16 | parent::__construct($parameters, $fileSystem); |
||
17 | $this->logger = $logger; |
||
18 | $this->workDir = $logPath; |
||
19 | } |
||
20 | |||
21 | protected function finalise(): void |
||
37 | } |
||
38 | } |
||
40 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.