summaryrefslogtreecommitdiff
path: root/Zend/tests/argument_restriction_006.phpt
blob: 5d0c24889a7d48f0f378a39b5bd5e23fc761368e (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 = [...]) in %s on line %d