Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 50% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | abstract class Tiqr_UserStorage_Abstract implements Tiqr_UserStorage_Interface |
||
30 | { |
||
31 | protected $logger; |
||
32 | |||
33 | 6 | public function __construct(array $config, LoggerInterface $logger) |
|
34 | { |
||
35 | 6 | $this->logger = $logger; |
|
36 | } |
||
37 | |||
38 | /** |
||
39 | * Returns additional attributes for the user. |
||
40 | * |
||
41 | * @param string $userId User identifier. |
||
42 | * @return array additional user attributes |
||
43 | */ |
||
44 | public function getAdditionalAttributes(string $userId): array |
||
47 | } |
||
48 | } |
||
49 |