1 | <?php declare(strict_types=1); |
||
30 | class RelationshipDataIsNull implements RelationshipDataInterface |
||
31 | { |
||
32 | /** @var string */ |
||
33 | public const MSG_INVALID_OPERATION = 'Invalid operation.'; |
||
34 | |||
35 | /** |
||
36 | * @inheritdoc |
||
37 | */ |
||
38 | 6 | public function isCollection(): bool |
|
42 | |||
43 | /** |
||
44 | * @inheritdoc |
||
45 | */ |
||
46 | 6 | public function isNull(): bool |
|
50 | |||
51 | /** |
||
52 | * @inheritdoc |
||
53 | */ |
||
54 | 6 | public function isResource(): bool |
|
58 | |||
59 | /** |
||
60 | * @inheritdoc |
||
61 | */ |
||
62 | 6 | public function isIdentifier(): bool |
|
66 | |||
67 | /** |
||
68 | * @inheritdoc |
||
69 | */ |
||
70 | 1 | public function getIdentifier(): IdentifierInterface |
|
74 | |||
75 | /** |
||
76 | * @inheritdoc |
||
77 | */ |
||
78 | 1 | public function getIdentifiers(): iterable |
|
82 | |||
83 | /** |
||
84 | * @inheritdoc |
||
85 | */ |
||
86 | 1 | public function getResource(): ResourceInterface |
|
90 | |||
91 | /** |
||
92 | * @inheritdoc |
||
93 | */ |
||
94 | 1 | public function getResources(): iterable |
|
98 | } |
||
99 |