Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | abstract class BasePackage extends Exportable { |
||
11 | |||
12 | /** |
||
13 | * The plugin instances. |
||
14 | * |
||
15 | * @var array |
||
16 | */ |
||
17 | protected static $instances = []; |
||
18 | |||
19 | /** |
||
20 | * Get a new or existing plugin instance. |
||
21 | * |
||
22 | * @return mixed |
||
23 | * The plugin. |
||
24 | */ |
||
25 | public static function getInstance() { |
||
34 |