Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
56 | public static function getInstance() |
||
57 | { |
||
58 | $className = static::class; |
||
59 | |||
60 | /* create instance */ |
||
61 | |||
62 | if (!array_key_exists($className, static::$_instanceArray)) |
||
63 | { |
||
64 | static::$_instanceArray[$className] = new static(); |
||
65 | } |
||
66 | return static::$_instanceArray[$className]; |
||
67 | } |
||
68 | |||
81 |