Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invalid trait insteadof list #18223

Open
iluuu1994 opened this issue Apr 1, 2025 · 3 comments
Open

Invalid trait insteadof list #18223

iluuu1994 opened this issue Apr 1, 2025 · 3 comments

Comments

@iluuu1994
Copy link
Member

Description

The following code:

<?php

trait A {
    public function test() {
        return 'A';
    }
}

trait B {
    public function test() {
        return 'B';
    }
}

class C {
    use A, B {
        A::test insteadof B;
        B::test insteadof A;
    }
}

$c = new C();
var_dump($c->test());

Resulted in this output:

Fatal error: Uncaught Error: Call to undefined method C::test()

But I expected this output instead:

Some trait-resolution-time error

PHP Version

PHP-5.4+

Operating System

No response

@mvorisek
Copy link
Contributor

mvorisek commented Apr 2, 2025

Probably subissue of #17331.

@iluuu1994
Copy link
Member Author

I don't think so. The problem here is that you may two trait methods may mutually suppress each other, resulting in neither method from being added. The problem in your issue is that use adaptations are not linked to the corresponding use block, which is not really a bug but just a very very weird design choice.

@mvorisek
Copy link
Contributor

mvorisek commented Apr 2, 2025

a repro with defined method in C class: https://3v4l.org/jeYMX

should fail probably too

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants