6
6
7
7
use ArgumentCountError ;
8
8
use OutOfBoundsException ;
9
+ use PropertyHookType ;
9
10
use ReflectionException as CoreReflectionException ;
11
+ use ReflectionMethod as CoreReflectionMethod ;
10
12
use ReflectionProperty as CoreReflectionProperty ;
11
13
use Roave \BetterReflection \Reflection \Exception \NoObjectProvided ;
12
14
use Roave \BetterReflection \Reflection \Exception \NotAnObject ;
13
15
use Roave \BetterReflection \Reflection \ReflectionAttribute as BetterReflectionAttribute ;
16
+ use Roave \BetterReflection \Reflection \ReflectionMethod as BetterReflectionMethod ;
14
17
use Roave \BetterReflection \Reflection \ReflectionProperty as BetterReflectionProperty ;
18
+ use Roave \BetterReflection \Reflection \ReflectionPropertyHookType as BetterReflectionPropertyHookType ;
15
19
use Throwable ;
16
20
use TypeError ;
17
21
use ValueError ;
@@ -30,6 +34,20 @@ final class ReflectionProperty extends CoreReflectionProperty
30
34
*/
31
35
public const IS_FINAL_COMPATIBILITY = 32 ;
32
36
37
+ /**
38
+ * @internal
39
+ *
40
+ * @see CoreReflectionProperty::IS_ABSTRACT
41
+ */
42
+ public const IS_ABSTRACT_COMPATIBILITY = 64 ;
43
+
44
+ /**
45
+ * @internal
46
+ *
47
+ * @see CoreReflectionProperty::IS_VIRTUAL
48
+ */
49
+ public const IS_VIRTUAL_COMPATIBILITY = 512 ;
50
+
33
51
/**
34
52
* @internal
35
53
*
@@ -156,6 +174,12 @@ public function isFinal(): bool
156
174
return $ this ->betterReflectionProperty ->isFinal ();
157
175
}
158
176
177
+ /** @psalm-mutation-free */
178
+ public function isAbstract (): bool
179
+ {
180
+ return $ this ->betterReflectionProperty ->isAbstract ();
181
+ }
182
+
159
183
/** @psalm-mutation-free */
160
184
public function isDefault (): bool
161
185
{
@@ -250,6 +274,71 @@ public function isReadOnly(): bool
250
274
return $ this ->betterReflectionProperty ->isReadOnly ();
251
275
}
252
276
277
+ /** @psalm-mutation-free */
278
+ public function isVirtual (): bool
279
+ {
280
+ return $ this ->betterReflectionProperty ->isVirtual ();
281
+ }
282
+
283
+ public function hasHooks (): bool
284
+ {
285
+ return $ this ->betterReflectionProperty ->hasHooks ();
286
+ }
287
+
288
+ /** @psalm-suppress UndefinedClass */
289
+ public function hasHook (PropertyHookType $ hookType ): bool
290
+ {
291
+ return $ this ->betterReflectionProperty ->hasHook (BetterReflectionPropertyHookType::fromCoreReflectionPropertyHookType ($ hookType ));
292
+ }
293
+
294
+ /** @psalm-suppress UndefinedClass */
295
+ public function getHook (PropertyHookType $ hookType ): ReflectionMethod |null
296
+ {
297
+ $ hook = $ this ->betterReflectionProperty ->getHook (BetterReflectionPropertyHookType::fromCoreReflectionPropertyHookType ($ hookType ));
298
+ if ($ hook === null ) {
299
+ return null ;
300
+ }
301
+
302
+ return new ReflectionMethod ($ hook );
303
+ }
304
+
305
+ /** @return array{get?: ReflectionMethod, set?: ReflectionMethod} */
306
+ public function getHooks (): array
307
+ {
308
+ return array_map (
309
+ static fn (BetterReflectionMethod $ betterReflectionMethod ): CoreReflectionMethod => new ReflectionMethod ($ betterReflectionMethod ),
310
+ $ this ->betterReflectionProperty ->getHooks (),
311
+ );
312
+ }
313
+
314
+ public function getSettableType (): ReflectionUnionType |ReflectionNamedType |ReflectionIntersectionType |null
315
+ {
316
+ $ setHook = $ this ->betterReflectionProperty ->getHook (BetterReflectionPropertyHookType::Set);
317
+ if ($ setHook !== null ) {
318
+ return ReflectionType::fromTypeOrNull ($ setHook ->getParameters ()[0 ]->getType ());
319
+ }
320
+
321
+ if ($ this ->isVirtual ()) {
322
+ return new ReflectionNamedType ('never ' );
323
+ }
324
+
325
+ return $ this ->getType ();
326
+ }
327
+
328
+ public function getRawValue (object $ object ): mixed
329
+ {
330
+ throw new Exception \NotImplemented ('Not implemented ' );
331
+ }
332
+
333
+ public function setRawValue (object $ object , mixed $ value ): void
334
+ {
335
+ if ($ this ->hasHooks ()) {
336
+ throw new Exception \NotImplemented ('Not implemented ' );
337
+ }
338
+
339
+ $ this ->setValue ($ object , $ value );
340
+ }
341
+
253
342
public function __get (string $ name ): mixed
254
343
{
255
344
if ($ name === 'name ' ) {
0 commit comments