1 | <?php |
||
17 | trait OwnerAttribute |
||
18 | { |
||
19 | use OwnerRules, OwnerMutator; |
||
20 | |||
21 | /** |
||
22 | * @var int|null |
||
23 | */ |
||
24 | private $ownerId; |
||
25 | |||
26 | /** |
||
27 | * @return array |
||
28 | */ |
||
29 | protected function ownerFields(): array |
||
35 | |||
36 | /** |
||
37 | * @return array |
||
38 | */ |
||
39 | protected function ownerAttributes(): array |
||
45 | |||
46 | /** |
||
47 | * @return array |
||
48 | */ |
||
49 | protected function ownerAttributeLabels(): array |
||
55 | } |
||
56 |