blob: 1ee7fe669575bb5180b47060f2b711e17eeb2fb3 (
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
|
--TEST--
Closure 059: Closure type hinting
--FILE--
<?php
class A {
}
class B {
}
$a = new A;
$b = new B;
$f = function (A $a){};
$f($a);
$f->__invoke($a);
call_user_func(array($f,"__invoke"), $a);
try {
$f($b);
} catch (Error $e) {
echo "Exception: " . $e->getMessage() . "\n";
}
try {
$f->__invoke($b);
} catch (Error $e) {
echo "Exception: " . $e->getMessage() . "\n";
}
try {
call_user_func(array($f,"__invoke"), $b);
} catch (Error $e) {
echo "Exception: " . $e->getMessage() . "\n";
}
--EXPECTF--
Exception: Argument 1 passed to {closure}() must be an instance of A, instance of B %s
Exception: Argument 1 passed to {closure}() must be an instance of A, instance of B %s
Exception: Argument 1 passed to {closure}() must be an instance of A, instance of B %s
|