| 1 | <?php |
||
| 11 | class File |
||
| 12 | { |
||
| 13 | /** @var FileScope */ |
||
| 14 | private $_scope; |
||
| 15 | private $_path; |
||
| 16 | private $hash; |
||
| 17 | private $name; |
||
|
|
|||
| 18 | |||
| 19 | public function __construct($path) |
||
| 23 | |||
| 24 | public function updateScope(FileScope $scope, $hash) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return FileScope |
||
| 32 | */ |
||
| 33 | public function scope() |
||
| 37 | |||
| 38 | public function path() |
||
| 42 | |||
| 43 | public function isChanged($hash) |
||
| 47 | } |
||
| 48 |
This check marks private properties in classes that are never used. Those properties can be removed.