parser/phpast/samples/type-strings.php
2022-07-23 16:01:11 +01:00

13 lines
112 B
PHP

<?php
function plain(string $b) {
}
function nullable(?string $f) {
}
function foo(int|float $bar) {
}