| 1 | <?php |
||
| 14 | class UriBuilder |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $proto; |
||
|
|
|||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | private $host; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | private $base; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var SwaggerDocument |
||
| 34 | */ |
||
| 35 | private $document; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Construct the wrapper |
||
| 39 | * |
||
| 40 | * @param SwaggerDocument $document |
||
| 41 | * @param array $options |
||
| 42 | */ |
||
| 43 | public function __construct(SwaggerDocument $document, array $options = []) |
||
| 59 | |||
| 60 | } |
||
| 61 |
This check marks private properties in classes that are never used. Those properties can be removed.