| Total Complexity | 2 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | trait ServicesTrait |
||
| 25 | { |
||
| 26 | // Public Static Methods |
||
| 27 | // ========================================================================= |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @inheritdoc |
||
| 31 | */ |
||
| 32 | public static function config(): array |
||
| 37 | ], |
||
| 38 | ]; |
||
| 39 | } |
||
| 40 | |||
| 41 | // Public Methods |
||
| 42 | // ========================================================================= |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Returns the profile service |
||
| 46 | * |
||
| 47 | * @return ProfileService The profile service |
||
| 48 | * @throws InvalidConfigException |
||
| 49 | */ |
||
| 50 | public function getProfile(): ProfileService |
||
| 55 |