-
Notifications
You must be signed in to change notification settings - Fork 660
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
@psalm-template T of ... with additional comments is parsed incorrectly #9506
Comments
I found these snippets: https://psalm.dev/r/ebc33e6f34<?php
/**
* @psalm-template T of string
*
* lorem ipsum
*/
class Test {
/** @psalm-param T $t */
function t(mixed $t): void { /** @psalm-trace $t */; }
}
https://psalm.dev/r/7ab8f17097<?php
/**
* @psalm-template T of string
*
* lorem ipsum.
*/
class Test {
/** @psalm-param T $t */
function t(mixed $t): void { /** @psalm-trace $t */; }
}
|
ptomulik
added a commit
to ptomulik/psalm
that referenced
this issue
Mar 13, 2023
ptomulik
added a commit
to ptomulik/psalm
that referenced
this issue
Mar 13, 2023
ptomulik
added a commit
to ptomulik/psalm
that referenced
this issue
Mar 13, 2023
Merged
ptomulik
added a commit
to ptomulik/psalm
that referenced
this issue
Mar 17, 2023
ptomulik
added a commit
to ptomulik/psalm
that referenced
this issue
Mar 17, 2023
orklah
added a commit
that referenced
this issue
Mar 28, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://psalm.dev/r/ebc33e6f34
https://psalm.dev/r/7ab8f17097
(the difference between above is just with
'.'
afterlorem ipsum
)The text was updated successfully, but these errors were encountered: