1 | <?php |
||
18 | class PhpcrMetadata |
||
19 | { |
||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $mappingDocumentDirectory; |
||
24 | |||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $extendedMappingDocumentDirectory; |
||
29 | |||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $documentDirectory; |
||
34 | |||
35 | /** |
||
36 | * @var string |
||
37 | */ |
||
38 | protected $extendedDocumentDirectory; |
||
39 | |||
40 | /** |
||
41 | * @var string |
||
42 | */ |
||
43 | protected $extendedSerializerDirectory; |
||
44 | |||
45 | public function __construct(BundleMetadata $bundleMetadata) |
||
53 | |||
54 | public function getMappingDocumentDirectory(): string |
||
58 | |||
59 | public function getExtendedMappingDocumentDirectory(): string |
||
63 | |||
64 | public function getDocumentDirectory(): string |
||
68 | |||
69 | public function getExtendedDocumentDirectory(): string |
||
73 | |||
74 | public function getExtendedSerializerDirectory(): string |
||
78 | |||
79 | /** |
||
80 | * @return array|\Iterator |
||
81 | */ |
||
82 | public function getDocumentMappingFiles(): iterable |
||
94 | |||
95 | public function getDocumentNames(): array |
||
113 | |||
114 | /** |
||
115 | * @return array|\Iterator |
||
116 | */ |
||
117 | public function getRepositoryFiles(): iterable |
||
129 | } |
||
130 |