1 | <?php |
||
5 | class Jobbers |
||
6 | { |
||
7 | /* @var Jobbers Singleton instance of Jobbers */ |
||
8 | private static $_instance; |
||
9 | |||
10 | /* @var Loader Loader instance */ |
||
11 | private $_loader; |
||
|
|||
12 | |||
13 | // default config |
||
14 | private $_config = [ |
||
15 | 'timeout' => 10, |
||
16 | ]; |
||
17 | |||
18 | public static function isInit() |
||
22 | |||
23 | public static function getInstance() |
||
27 | |||
28 | public static function config($config) |
||
33 | |||
34 | public static function init() |
||
40 | |||
41 | public function getConfig() |
||
45 | |||
46 | public function setConfig($config) |
||
53 | |||
54 | } |
This check marks private properties in classes that are never used. Those properties can be removed.