1 | <?php |
||
18 | class OrmMetadata |
||
19 | { |
||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $mappingEntityDirectory; |
||
24 | |||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $extendedMappingEntityDirectory; |
||
29 | |||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $entityDirectory; |
||
34 | |||
35 | /** |
||
36 | * @var string |
||
37 | */ |
||
38 | protected $extendedEntityDirectory; |
||
39 | |||
40 | /** |
||
41 | * @var string |
||
42 | */ |
||
43 | protected $extendedSerializerDirectory; |
||
44 | |||
45 | public function __construct(BundleMetadata $bundleMetadata) |
||
53 | |||
54 | public function getMappingEntityDirectory(): string |
||
58 | |||
59 | public function getExtendedMappingEntityDirectory(): string |
||
63 | |||
64 | public function getEntityDirectory(): string |
||
68 | |||
69 | public function getExtendedEntityDirectory(): string |
||
73 | |||
74 | public function getExtendedSerializerDirectory(): string |
||
78 | |||
79 | /** |
||
80 | * @return array|\Iterator |
||
81 | */ |
||
82 | public function getEntityMappingFiles(): iterable |
||
95 | |||
96 | public function getEntityNames(): array |
||
115 | |||
116 | /** |
||
117 | * @return array|\Iterator |
||
118 | */ |
||
119 | public function getRepositoryFiles(): iterable |
||
131 | } |
||
132 |