|
12 | 12 | use Doctrine\ORM\EntityManager;
|
13 | 13 | use Doctrine\ORM\Mapping\ClassMetadataFactory;
|
14 | 14 | use Doctrine\ORM\Mapping\ClassMetadataInfo;
|
| 15 | +use Doctrine\Persistence\Mapping\RuntimeReflectionService; |
15 | 16 | use Psr\Log\LoggerInterface;
|
16 | 17 | use ReflectionClass;
|
17 | 18 | use ReflectionProperty;
|
@@ -126,23 +127,23 @@ public function sleep(): SerializedTranslatableClassMetadata
|
126 | 127 | return $sleep;
|
127 | 128 | }
|
128 | 129 |
|
129 |
| - public static function wakeup(SerializedTranslatableClassMetadata $data): self |
| 130 | + public static function wakeup(SerializedTranslatableClassMetadata $data, RuntimeReflectionService $reflectionService): self |
130 | 131 | {
|
131 | 132 | $self = new self($data->class);
|
132 | 133 | $self->primaryLocale = $data->primaryLocale;
|
133 |
| - $self->translationClass = new ReflectionClass($data->translationClass); |
| 134 | + $self->translationClass = $reflectionService->getClass($data->translationClass); |
134 | 135 |
|
135 | 136 | foreach ($data->translationFieldMapping as $fieldname => $property) {
|
136 |
| - $self->translationFieldMapping[$fieldname] = new ReflectionProperty(...$property); |
| 137 | + $self->translationFieldMapping[$fieldname] = $reflectionService->getAccessibleProperty(...$property); |
137 | 138 | }
|
138 | 139 |
|
139 | 140 | foreach ($data->translatedProperties as $fieldname => $property) {
|
140 |
| - $self->translatedProperties[$fieldname] = new ReflectionProperty(...$property); |
| 141 | + $self->translatedProperties[$fieldname] = $reflectionService->getAccessibleProperty(...$property); |
141 | 142 | }
|
142 | 143 |
|
143 |
| - $self->translationsCollectionProperty = new ReflectionProperty(...$data->translationsCollectionProperty); |
144 |
| - $self->translationMappingProperty = new ReflectionProperty(...$data->translationMappingProperty); |
145 |
| - $self->translationLocaleProperty = new ReflectionProperty(...$data->translationLocaleProperty); |
| 144 | + $self->translationsCollectionProperty = $reflectionService->getAccessibleProperty(...$data->translationsCollectionProperty); |
| 145 | + $self->translationMappingProperty = $reflectionService->getAccessibleProperty(...$data->translationMappingProperty); |
| 146 | + $self->translationLocaleProperty = $reflectionService->getAccessibleProperty(...$data->translationLocaleProperty); |
146 | 147 |
|
147 | 148 | return $self;
|
148 | 149 | }
|
@@ -192,7 +193,7 @@ private function findTranslatedProperties(ClassMetadataInfo $cm, ClassMetadataFa
|
192 | 193 | continue;
|
193 | 194 | }
|
194 | 195 |
|
195 |
| - $reflectionProperty = $cm->getReflectionClass()->getProperty($fieldName); |
| 196 | + $reflectionProperty = $cm->getReflectionProperty($fieldName); |
196 | 197 | $attributes = $reflectionProperty->getAttributes(Attribute\Translatable::class);
|
197 | 198 |
|
198 | 199 | if (!$attributes) {
|
|
0 commit comments