| 1 | <?php |
||
| 16 | class Authentication extends ApiClient |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * Saves obejct instace (singleton...). |
||
| 20 | * |
||
| 21 | * @var Shared |
||
| 22 | */ |
||
| 23 | private static $_instance = null; |
||
|
|
|||
| 24 | |||
| 25 | /** |
||
| 26 | * Sekce užitá objektem. |
||
| 27 | * Section used by object |
||
| 28 | * |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | public $section = 'auth'; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Token |
||
| 35 | * |
||
| 36 | * @param mixed $init |
||
| 37 | * @param array $options |
||
| 38 | */ |
||
| 39 | 1 | public function __construct($init = null, $options = array()) |
|
| 43 | |||
| 44 | } |
||
| 45 |
This check marks private properties in classes that are never used. Those properties can be removed.