1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/fixtures/stubs/custom_functions.phpstub

15 lines
148 B
PHP
Raw Permalink Normal View History

<?php
2019-03-23 19:27:54 +01:00
function barBar(string $a) : string
{
}
2020-07-08 23:42:12 +02:00
function variadic(string ...$bar)
2019-03-23 19:27:54 +01:00
{
}
function variadic2() : array
{
return func_get_args();
}