summaryrefslogtreecommitdiff
path: root/Zend/tests/argument_restriction_002.phpt
blob: 0dd0388bd3a5dbe8262c37c8172e84affe061991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Bug #55719 (Argument restriction should come with a more specific error message)
--FILE--
<?php
Abstract Class Base {
    public function test($foo, array &$bar, $option = NULL, $extra = 3.141592653589793238462643383279502884197169399375105  ) {
    }
}

class Sub extends Base {
    public function test($foo, array &$bar) {
    }
}
?>
--EXPECTF--
Fatal error: Declaration of Sub::test($foo, array &$bar) must be compatible with Base::test($foo, array &$bar, $option = null, $extra = 3.1415926535898) in %s on line %d