summaryrefslogtreecommitdiff
path: root/Zend/tests/argument_restriction_006.phpt
blob: dd744d5ea906f0159bceedb60ab3c9f32b21313d (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