Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
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 similar service |
||
46 | * |
||
47 | * @return SimilarService The similar service |
||
48 | * @throws InvalidConfigException |
||
49 | */ |
||
50 | public function getSimilar(): SimilarService |
||
55 |