| 1 | <?php |
||
| 17 | class TypeNamePrimitive implements PrimitiveInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var TypeNameInterface |
||
| 21 | */ |
||
| 22 | private $name; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * TypeNamePrimitive constructor. |
||
| 26 | * @param TypeNameInterface $name |
||
| 27 | */ |
||
| 28 | public function __construct(TypeNameInterface $name) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function __toString(): string |
||
| 42 | } |
||
| 43 |