1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/fixtures/stubs/custom_functions.phpstub
2021-02-13 18:42:34 -05:00

15 lines
148 B
PHP

<?php
function barBar(string $a) : string
{
}
function variadic(string ...$bar)
{
}
function variadic2() : array
{
return func_get_args();
}