Total Complexity | 6 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | final class CustomerExtraAttributes extends ActiveRecord |
||
20 | { |
||
21 | private array $extraAttributes = [ |
||
22 | 'sex' => 'm', |
||
23 | ]; |
||
24 | |||
25 | public function getTableName(): string |
||
28 | } |
||
29 | |||
30 | public function getAttribute(string $name): mixed |
||
37 | } |
||
38 | |||
39 | public function getAttributes(array $names = null, array $except = []): array |
||
42 | } |
||
43 | |||
44 | public function hasAttribute($name): bool |
||
49 |