1 | <?php declare(strict_types=1); |
||
33 | abstract class BaseRelationshipData implements RelationshipDataInterface |
||
34 | { |
||
35 | /** |
||
36 | * @var FactoryInterface |
||
37 | */ |
||
38 | private $factory; |
||
39 | |||
40 | /** |
||
41 | * @var SchemaContainerInterface |
||
42 | */ |
||
43 | private $schemaContainer; |
||
44 | |||
45 | /** |
||
46 | * @var EditableContextInterface |
||
47 | */ |
||
48 | private $context; |
||
49 | |||
50 | /** |
||
51 | * @var PositionInterface |
||
52 | */ |
||
53 | private $position; |
||
54 | |||
55 | /** |
||
56 | * @param FactoryInterface $factory |
||
57 | * @param SchemaContainerInterface $schemaContainer |
||
58 | * @param EditableContextInterface $context |
||
59 | * @param PositionInterface $position |
||
60 | */ |
||
61 | 42 | public function __construct( |
|
72 | |||
73 | /** |
||
74 | * @param mixed $resource |
||
75 | * |
||
76 | * @return ResourceInterface |
||
77 | */ |
||
78 | 33 | protected function createParsedResource($resource): ResourceInterface |
|
92 | |||
93 | /** |
||
94 | * @param SchemaIdentifierInterface $identifier |
||
95 | * |
||
96 | * @return ResourceInterface |
||
97 | */ |
||
98 | 2 | protected function createParsedIdentifier(SchemaIdentifierInterface $identifier): ParserIdentifierInterface |
|
102 | } |
||
103 |