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

False positive SlevomatCodingStandard.Namespaces.UnusedUses.UnusedUse when using imported function inside switch's default case #1688

Open
simPod opened this issue Jul 5, 2024 · 0 comments

Comments

@simPod
Copy link
Contributor

simPod commented Jul 5, 2024

<?php

declare(strict_types=1);

namespace X;

use function Foo\yo;

final class X
{
    public function __construct()
    {
        switch (true) {
            default:
                yo();
        }
    }
}

With "squizlabs/php_codesniffer": "^3.10.1"

phpcs: SlevomatCodingStandard.Namespaces.UnusedUses.UnusedUse: Type Foo\yo is not used in this file.

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

No branches or pull requests

1 participant