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

must_use function #12738

Closed
zonuexe opened this issue Mar 13, 2025 · 3 comments
Closed

must_use function #12738

zonuexe opened this issue Mar 13, 2025 · 3 comments

Comments

@zonuexe
Copy link
Contributor

zonuexe commented Mar 13, 2025

Feature request

Rust refers to functions that should not discard their return values when used on a separate line as #[must_use], regardless of whether they have side effects. Similarly, PhpStorm marks such functions with #[Pure(true)].

ob_get_contents() is clearly an impure function with state, but it doesn't make sense to write ob_get_contents(); on a separate line. #[Pure(true)] means that.

refs phpstan/phpstan-src#3867 (comment)
refs #11101

Did PHPStan help you today? Did it make you happy in any way?

Tomorrow is the last day of my two-week spring internship at the company that employs me. The intern, who didn't know PHPStan, can now teach me the inner mechanisms of it. 🥰

@claudepache
Copy link

There will likely be #[NoDiscard] for that purpose in PHP 8.next, see: https://wiki.php.net/rfc/marking_return_value_as_important

Besides, #[Pure(true)] is a strange choice for marking an impure function. Please, don’t implement annotations with a flat contradiction in their name.

@zonuexe
Copy link
Contributor Author

zonuexe commented Mar 14, 2025

@claudepache
#[NoDiscard] is a good idea. The RFC votes are favorable, so it's likely to be implemented in the next PHP version.

Besides, #[Pure(true)] is a strange choice for marking an impure function. Please, don’t implement annotations with a flat contradiction in their name.

Very strange, but it's JetBrains/PhpStorm that provides them. More details can be found in the linked comments and PR.

@ondrejmirtes
Copy link
Member

Yeah, let's wait for the PHP RFC to pass. Meanwhile, you can use #[MustUseResult] with https://github.com/DaveLiddament/phpstan-php-language-extensions

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

3 participants