Skip to content

Allow short ternary operator for boolean #268

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

Open
LastDragon-ru opened this issue Apr 1, 2025 · 0 comments
Open

Allow short ternary operator for boolean #268

LastDragon-ru opened this issue Apr 1, 2025 · 0 comments

Comments

@LastDragon-ru
Copy link

Disallow short ternary operator (?:) - implies weak comparison, it's recommended to use null coalesce operator (??) or ternary operator with strict condition.

It is not the case if the left value is always boolean, right?

$a = false;      // boolean
$b = $a ?: null; // much more readable than
$c = $a !== false ? true : null;
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