summaryrefslogtreecommitdiff
path: root/Zend/tests/func_sig_trailing_comma.phpt
blob: 8153edbb05880b941e33575567b53e0f0a58aeeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
--TEST--
Trailing comma in function signatures
--FILE--
<?php

function test(
    $there,
    $are,
    $many,
    $params,
) {
    echo "Foo\n";
}

class Test {
    public function method(
        $there,
        $are,
        $many,
        $params,
    ) {
        echo "Foo\n";
    }
}

$func = function(
    $there,
    $are,
    $many,
    $params,
) {
    echo "Foo\n";
};

$func = fn(
    $there,
    $shouldnt,
    $be,
    $many,
    $params,
) => print "Foo\n";

?>
===DONE===
--EXPECT--
===DONE===