| Total Complexity | 4 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class TypeResolver |
||
| 11 | { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var ReflectionProperty |
||
| 15 | */ |
||
| 16 | protected $reflection; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * TypeResolver constructor. |
||
| 20 | * @param ReflectionProperty $reflection |
||
| 21 | */ |
||
| 22 | public function __construct(ReflectionProperty $reflection) |
||
| 23 | { |
||
| 24 | $this->reflection = $reflection; |
||
| 25 | } |
||
| 26 | |||
| 27 | |||
| 28 | /** |
||
| 29 | * @return PropertyType |
||
| 30 | */ |
||
| 31 | public function resolve() :PropertyType{ |
||
| 58 | } |
||
| 59 | |||
| 61 | } |