mirror of
https://github.com/danog/parser.git
synced 2024-12-02 17:38:16 +01:00
17 lines
162 B
PHP
17 lines
162 B
PHP
<?php
|
|
|
|
function plain(string $b) {
|
|
|
|
}
|
|
|
|
function nullable(?string $f) {
|
|
|
|
}
|
|
|
|
function foo(int|float $bar) {
|
|
|
|
}
|
|
|
|
function intersection(Model&HasComments $model) {
|
|
|
|
} |