| 1 | <?php |
||
| 22 | final class ResolvedValue |
||
| 23 | { |
||
| 24 | private $name; |
||
| 25 | private $namespace; |
||
| 26 | private $use; |
||
| 27 | |||
| 28 | 275 | public function __construct(Name $name, ?Name $namespace, ?Name $use) |
|
| 34 | |||
| 35 | 275 | public function getName(): Name |
|
| 39 | |||
| 40 | public function getNamespace(): ?Name |
||
| 44 | |||
| 45 | public function getUse(): ?Name |
||
| 49 | } |
||
| 50 |