Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | trait Options |
||
17 | { |
||
18 | public Manager $optionsManager; |
||
19 | |||
20 | /** |
||
21 | * Initialize Options Manager |
||
22 | */ |
||
23 | public function initializeOptions(): void |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * Return the existing or a new Options Manager of the current instance |
||
31 | */ |
||
32 | public function getOptionsManager(): Manager |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * Set an Options Manager for the current instance |
||
39 | */ |
||
40 | public function setOptionsManager(Manager $optionsManager = null): void |
||
45 |