summaryrefslogtreecommitdiff
path: root/Zend/tests/bug67436/bug67436_nohandler.phpt
blob: 74ea394f5d82363481cc4a74f3cff0bf6b45dcf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
bug67436: E_STRICT instead of custom error handler
--FILE--
<?php

spl_autoload_register(function($classname) {
	if (in_array($classname, array('a','b','c'))) {
		require_once __DIR__ . "/{$classname}.inc";
	}
});

a::staticTest();

$b = new b();
$b->test();
--EXPECTF--
Warning: Declaration of b::test() should be compatible with a::test($arg = c::TESTCONSTANT) in %s%ebug67436%eb.inc on line %d
b::test()
a::test(c::TESTCONSTANT)