diff options
author | Xinchen Hui <laruence@php.net> | 2011-10-31 06:04:43 +0000 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2011-10-31 06:04:43 +0000 |
commit | 3b99aa995d08347f7b3e8410ea95673f7fa40be7 (patch) | |
tree | 4236a2ec9060561308d245b539755fc6b093fc2f | |
parent | 725af4c2dd2edb2986041a3b8decb509b66eeabb (diff) | |
download | php-git-3b99aa995d08347f7b3e8410ea95673f7fa40be7.tar.gz |
Test for #60174 (Notice when array in method prototype error)
-rw-r--r-- | Zend/tests/argument_restriction_006.phpt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Zend/tests/argument_restriction_006.phpt b/Zend/tests/argument_restriction_006.phpt new file mode 100644 index 0000000000..948fc304c7 --- /dev/null +++ b/Zend/tests/argument_restriction_006.phpt @@ -0,0 +1,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 |