php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #71851 Method aliases exhibit unexpected inheritance behavior
Submitted: 2016-03-18 07:35 UTC Modified: 2020-09-18 10:21 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: tom at theanalogguy dot be Assigned:
Status: Verified Package: Scripting Engine problem
PHP Version: Irrelevant OS: Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: tom at theanalogguy dot be
New email:
PHP Version: OS:

 

 [2016-03-18 07:35 UTC] tom at theanalogguy dot be
Description:
------------
When extending SplObjectObserver for a custom implementation of ::attach(), any calls to ::offsetSet() are forwarded to the SplObjectObserver::attach() instead of the custom implementation in the child class.

Test script: https://3v4l.org/mXdWO

This appears to affect all versions between 5.5.0 and 7.0.4


Test script:
---------------
class Test extends \SplObjectStorage
{
    /**
     * {@inheritDoc}
     */
    public function attach($object, $data = null)
    {
        throw new \RuntimeException('this is a test');
    }
}

$instance = new Test;
$object = new \stdClass;
$data = ['foo' => 'bar'];

$instance[$object] = $data;

Expected result:
----------------
A RuntimeException being thrown.

Actual result:
--------------
No RuntimeException was thrown.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-03-18 21:08 UTC] jachimcoudenys at gmail dot com
I've started to write a test case: https://github.com/coudenysj/php-src/commit/22c6e1daf516dead9f70dea0722f7e3aec69df0d
 [2020-09-18 10:21 UTC] cmb@php.net
-Summary: SplObjectStorage incorrectly aliases offsetSet +Summary: Method aliases exhibit unexpected inheritance behavior -Status: Open +Status: Verified -Type: Bug +Type: Documentation Problem -Package: SPL related +Package: Scripting Engine problem
 [2020-09-18 10:21 UTC] cmb@php.net
This is not particularly related to SplObjectStorage::offsetSet(),
but rather a general property of method aliases wrt. inheritance.
Method aliases are implemented by adding a respective entry to the
class_entry's function_table, which shares the function_entry with
the aliased method.  However, there is no special support
regarding inheritance; the alias and the aliased method can be
overridden indepently.

In hindsight, it might not have been the best idea to even support
such aliases, but fixing their inheritance behavior would be a BC
break, so I think we should treat this as a documentation problem.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 03:01:27 2024 UTC