summaryrefslogtreecommitdiff
path: root/Zend/tests/argument_restriction_006.phpt
blob: 2df0e1e90d8089d5d3a9b26122eff3693a452d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Bug #60174 (Notice when array in method prototype error)
--FILE--
<?php
Abstract Class Base {
	public function test($foo, $extra = array("test")) {
	}
}

class Sub extends Base {
	public function test($foo, $extra) {
	}
}
?>
--EXPECTF--
Warning: Declaration of Sub::test($foo, $extra) should be compatible with Base::test($foo, $extra = Array) in %sargument_restriction_006.php on line %d