1 | <?php |
||
21 | final class DependsCommandWrapper |
||
22 | { |
||
23 | /** |
||
24 | * @var OutputInterface |
||
25 | */ |
||
26 | private $output; |
||
27 | |||
28 | private $composer; |
||
29 | |||
30 | /** |
||
31 | * @var DependsCommand |
||
32 | */ |
||
33 | private $dependsCommand; |
||
|
|||
34 | |||
35 | /** |
||
36 | * @param Composer $composer |
||
37 | * @param bool $decoratedOutput |
||
38 | */ |
||
39 | public function __construct(Composer $composer, $decoratedOutput = false) |
||
52 | |||
53 | /** |
||
54 | * @param PackageInterface $package |
||
55 | * |
||
56 | * @return string[] The output, array of lines. |
||
57 | */ |
||
58 | public function dependsOutput(PackageInterface $package) |
||
71 | } |
||
72 |
This check marks private properties in classes that are never used. Those properties can be removed.