| 1 | <?php |
||
| 19 | final class ResolvedValue |
||
| 20 | { |
||
| 21 | private $name; |
||
| 22 | private $namespace; |
||
| 23 | private $use; |
||
| 24 | |||
| 25 | 258 | public function __construct(Name $name, ?Name $namespace, ?Name $use) |
|
| 31 | |||
| 32 | 258 | public function getName(): Name |
|
| 36 | |||
| 37 | public function getNamespace(): ?Name |
||
| 41 | |||
| 42 | public function getUse(): ?Name |
||
| 46 | } |
||
| 47 |