php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #39148 Type hinting for functions
Submitted: 2006-10-13 14:29 UTC Modified: 2006-10-21 01:00 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: mihai at aviamotors dot ro Assigned:
Status: No Feedback Package: Class/Object related
PHP Version: 5.1.6 OS: Windows XP
Private report: No CVE-ID: None
Have you experienced this issue?
Rate the importance of this bug to you:

 [2006-10-13 14:29 UTC] mihai at aviamotors dot ro
Description:
------------
Type hinting does not work when forwarding a parameter from one function to another.

Reproduce code:
---------------
function a(MyClass &$x)
{
return b($x);
}

function b(MyClass &$x)
{
return $x->Name;
}

Expected result:
----------------
To work.

Actual result:
--------------
Throws the following error:

Fatal error: Argument 1 passed to b() must be an object of class MyClass 

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-10-13 14:34 UTC] tony2001@php.net
Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with <?php and ends with ?>,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc. If the script requires a 
database to demonstrate the issue, please make sure it creates 
all necessary tables, stored procedures etc.

Please avoid embedding huge scripts into the report.


 [2006-10-21 01:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 22:01:30 2024 UTC