summaryrefslogtreecommitdiff
path: root/Zend/tests/argument_restriction_006.phpt
blob: 788670cd517d46c85b54aaf3178d8bb5bd3fcf13 (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--
Fatal error: Declaration of Sub::test($foo, $extra) must be compatible with Base::test($foo, $extra = Array) in %sargument_restriction_006.php on line %d