|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchesbug55719.diff (last revision 2011-09-18 15:51 UTC by laruence@php.net)argument_restriction_002.phpt (last revision 2011-09-18 15:32 UTC by laruence@php.net) argument_restriction_005.phpt (last revision 2011-09-18 15:11 UTC by laruence@php.net) argument_restriction_004.phpt (last revision 2011-09-18 15:06 UTC by laruence@php.net) argument_restriction_003.phpt (last revision 2011-09-18 15:06 UTC by laruence@php.net) argument_restriction_001.phpt (last revision 2011-09-18 14:54 UTC by laruence@php.net) Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-09-18 13:15 UTC] laruence@php.net
[2011-09-18 14:54 UTC] laruence@php.net
[2011-09-18 14:54 UTC] laruence@php.net
[2011-09-18 14:55 UTC] laruence@php.net
[2011-09-18 15:06 UTC] laruence@php.net
[2011-09-18 15:06 UTC] laruence@php.net
[2011-09-18 15:11 UTC] laruence@php.net
[2011-09-18 15:14 UTC] laruence@php.net
[2011-09-18 15:15 UTC] laruence@php.net
[2011-09-18 15:32 UTC] laruence@php.net
[2011-09-18 15:32 UTC] laruence@php.net
[2011-09-18 15:51 UTC] laruence@php.net
[2011-09-19 04:59 UTC] laruence@php.net
-Assigned To:
+Assigned To: dmitry
[2011-09-19 11:36 UTC] laruence@php.net
[2011-09-23 11:54 UTC] laruence@php.net
-Assigned To: dmitry
+Assigned To: laruence
[2011-09-23 15:07 UTC] laruence@php.net
[2011-09-23 15:09 UTC] laruence@php.net
-Status: Assigned
+Status: To be documented
-Type: Feature/Change Request
+Type: Bug
[2011-09-23 15:09 UTC] laruence@php.net
[2011-09-23 15:28 UTC] laruence@php.net
-Status: To be documented
+Status: Closed
[2011-09-23 15:28 UTC] laruence@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 08:00:01 2025 UTC |
Description: ------------ as discussed in ML, now PHP will trigger a FATAL or STRICT warning for incompatible arguments between a class and a subclass method, Test script: --------------- <?php class XSoapClient extends SoapClient { function __doRequest($request, $location, $action, $version) { } } Expected result: ---------------- Declaration of XSoapClient::__doRequest() should be compatible with SoapClient::__doRequest($request, $location, $action, $version, $one_way = NULL) Actual result: -------------- Declaration of XSoapClient::__doRequest() should be compatible with that of SoapClient::__doRequest()