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