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

17 lines
162 B
PHP

<?php
function plain(string $b) {
}
function nullable(?string $f) {
}
function foo(int|float $bar) {
}
function intersection(Model&HasComments $model) {
}