1 | <?php declare(strict_types=1); |
||
32 | abstract class BaseRelationshipData implements RelationshipDataInterface |
||
33 | { |
||
34 | /** |
||
35 | * @var FactoryInterface |
||
36 | */ |
||
37 | private $factory; |
||
38 | |||
39 | /** |
||
40 | * @var SchemaContainerInterface |
||
41 | */ |
||
42 | private $schemaContainer; |
||
43 | |||
44 | /** |
||
45 | * @var PositionInterface |
||
46 | */ |
||
47 | private $position; |
||
48 | |||
49 | /** |
||
50 | * @param FactoryInterface $factory |
||
51 | * @param SchemaContainerInterface $schemaContainer |
||
52 | * @param PositionInterface $position |
||
53 | */ |
||
54 | 37 | public function __construct( |
|
63 | |||
64 | /** |
||
65 | * @param mixed $resource |
||
66 | * |
||
67 | * @return ResourceInterface |
||
68 | */ |
||
69 | 29 | protected function createParsedResource($resource): ResourceInterface |
|
82 | |||
83 | /** |
||
84 | * @param SchemaIdentifierInterface $identifier |
||
85 | * |
||
86 | * @return ResourceInterface |
||
87 | */ |
||
88 | 1 | protected function createParsedIdentifier(SchemaIdentifierInterface $identifier): ParserIdentifierInterface |
|
92 | } |
||
93 |