summaryrefslogtreecommitdiff
path: root/Zend/tests/closure_059.phpt
blob: 299d8f5d9d4f9514579c402594bbae8005029941 (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 declaration
--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