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