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

Appending to array with int-range key produces warning #9131

Closed
MoonE opened this issue Apr 2, 2023 · 2 comments
Closed

Appending to array with int-range key produces warning #9131

MoonE opened this issue Apr 2, 2023 · 2 comments

Comments

@MoonE
Copy link

MoonE commented Apr 2, 2023

Bug report

<?php 
class A
{
    /** @var array<int<0, max>, string> */
    public array $l = [];

    public function add(string $s): void {
        $this->l[] = $s;
    }
}

8 | Property A::$l (array<int<0, max>, string>) does not accept non-empty-array<int, string>.

Code snippet that reproduces the problem

https://phpstan.org/r/bb35caea-1af5-43f2-bec1-6f7d578218f3

Expected output

No warning!

@ondrejmirtes
Copy link
Member

Fixed: phpstan/phpstan-src@6c32371

@github-actions
Copy link

github-actions bot commented May 5, 2023

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators May 5, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants