summaryrefslogtreecommitdiff
path: root/Zend/tests/bug48899.phpt
blob: 2cbf308c3eddc5818d04aee4c15c1d1b7658756f (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
--TEST--
Bug #48899 (is_callable returns true even if method does not exist in parent class)
--FILE--
<?php

class ParentClass { }

class ChildClass extends ParentClass {
    public function testIsCallable() {
        var_dump(is_callable(array($this, 'parent::testIsCallable')));
    }
    public function testIsCallable2() {
        var_dump(is_callable(array($this, 'static::testIsCallable2')));
    }
}

$child = new ChildClass();
$child->testIsCallable();
$child->testIsCallable2();

?>
--EXPECT--
bool(false)
bool(true)