summaryrefslogtreecommitdiff
path: root/Zend/tests/type_declarations/callable_001.phpt
blob: 0466288d59a13122404495869237a3e7a5f56b9f (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
--TEST--
callable type#001
--FILE--
<?php

class bar {
    function baz() {}
    static function foo() {}
}
function foo(callable $bar) {
    var_dump($bar);
}
$closure = function () {};

foo("strpos");
foo("foo");
foo(array("bar", "baz"));
foo(array("bar", "foo"));
foo($closure);
--EXPECTF--
string(6) "strpos"
string(3) "foo"

Deprecated: Non-static method bar::baz() should not be called statically in %s on line %d
array(2) {
  [0]=>
  string(3) "bar"
  [1]=>
  string(3) "baz"
}
array(2) {
  [0]=>
  string(3) "bar"
  [1]=>
  string(3) "foo"
}
object(Closure)#%d (0) {
}