1 | <?php declare(strict_types=1); |
||
14 | class ProcessEnvironment |
||
15 | { |
||
16 | /** |
||
17 | * @var ValueProvider[] |
||
18 | */ |
||
19 | private $constants; |
||
20 | |||
21 | /** |
||
22 | * @var ValueProvider[] |
||
23 | */ |
||
24 | private $variables; |
||
25 | |||
26 | /** |
||
27 | * @var Template[] |
||
28 | */ |
||
29 | private $templates; |
||
30 | |||
31 | /** |
||
32 | * @var ValueProvider[] |
||
33 | */ |
||
34 | private $dotenvVariables; |
||
35 | |||
36 | /** |
||
37 | * @param ValueProvider[] $constants |
||
38 | * @param ValueProvider[] $variables |
||
39 | * @param Template[] $templates |
||
40 | * @param ValueProvider[] $dotenvVars |
||
41 | */ |
||
42 | public function __construct(array $constants, array $variables, array $templates, array $dotenvVars) |
||
54 | |||
55 | /** |
||
56 | * @return ValueProvider[] |
||
57 | */ |
||
58 | public function getAllValues(): array |
||
66 | |||
67 | /** |
||
68 | * @return Template[] |
||
69 | */ |
||
70 | public function getTemplates(): array |
||
74 | |||
75 | public function createProcess(string $shellCommand): Process |
||
79 | } |
||
80 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.