Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
66.67% covered (warning)
66.67%
4 / 6
50.00% covered (danger)
50.00%
1 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
OneToOneAttribute
66.67% covered (warning)
66.67%
4 / 6
50.00% covered (danger)
50.00%
1 / 2
4.59
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getReflectionProperty
60.00% covered (warning)
60.00%
3 / 5
0.00% covered (danger)
0.00%
0 / 1
3.58
1<?php
2namespace Apie\StorageMetadata\Attributes;
3
4use Attribute;
5use ReflectionClass;
6use ReflectionException;
7use ReflectionProperty;
8
9#[Attribute(Attribute::TARGET_PROPERTY)]
10class OneToOneAttribute
11{
12    /**
13     * @param class-string<object> $declaredClass
14     */
15    public function __construct(
16        public readonly string $propertyName,
17        public readonly ?string $declaredClass = null
18    ) {
19    }
20
21    /**
22     * @template T of object
23     * @param ReflectionClass<T> $targetClass
24     * @param T $instance
25     */
26    public function getReflectionProperty(ReflectionClass $targetClass, object $instance): ?ReflectionProperty
27    {
28        $property = ($this->declaredClass ? new ReflectionClass($this->declaredClass) : $targetClass)->getProperty($this->propertyName);
29        try {
30            $property->isInitialized($instance);
31            return $property;
32        } catch (ReflectionException) {
33            return null;
34        }
35    }
36}