| 1 | <?php |
||
| 7 | class Type |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @param \PhpParser\Node\Name|string|null $typeA |
||
| 11 | * @param \PhpParser\Node\Name|string|null $typeB |
||
| 12 | * @return bool |
||
| 13 | */ |
||
| 14 | 6 | public static function isSame($typeA, $typeB) |
|
| 20 | |||
| 21 | /** |
||
| 22 | * @param \PhpParser\Node\Name|\PhpParser\Node\NullableType|string|null $type |
||
| 23 | * @return string|null |
||
| 24 | */ |
||
| 25 | 78 | public static function get($type) |
|
| 37 | } |
||
| 38 |