Total Complexity | 3 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class LSX_Currencies { |
||
16 | |||
17 | /** |
||
18 | * A wrapper for the deprecated class. |
||
19 | * |
||
20 | * @var object |
||
21 | */ |
||
22 | public $class = ''; |
||
23 | |||
24 | /** |
||
25 | * Holds instance of the class |
||
26 | * |
||
27 | * @var object \lsx\currencies\classes\Currencies() |
||
28 | */ |
||
29 | private static $instance; |
||
30 | |||
31 | /** |
||
32 | * Constructor |
||
33 | */ |
||
34 | public function __construct() { |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Return an instance of this class. |
||
40 | * |
||
41 | * @return object |
||
42 | */ |
||
43 | public static function init() { |
||
51 |