1 | <?php |
||
35 | class ExtendedBase extends Base { |
||
36 | |||
37 | /** @var OutputInterface */ |
||
38 | private $output; |
||
|
|||
39 | |||
40 | public function __construct() { |
||
43 | |||
44 | |||
45 | /** |
||
46 | * @return bool|void |
||
47 | * @throws InterruptException |
||
48 | */ |
||
49 | public function hasBeenInterrupted() { |
||
54 | // |
||
55 | // |
||
56 | // /** |
||
57 | // * @param OutputInterface $output |
||
58 | // * |
||
59 | // * @deprecated |
||
60 | // */ |
||
61 | // public function setOutput(OutputInterface $output) { |
||
62 | // $this->output = $output; |
||
63 | // } |
||
64 | // |
||
65 | // /** |
||
66 | // * @return OutputInterface |
||
67 | // * @deprecated |
||
68 | // */ |
||
69 | // public function getOutput() { |
||
70 | // return $this->output; |
||
71 | // } |
||
72 | } |
This check marks private properties in classes that are never used. Those properties can be removed.