We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Additional analysis (should check if all is applicable):
array
object
callable
iterable
resource
void
return;
return
return; return $unreacheable;
throw
int[]
[1, 2, 3]
mixed[]
[1, 'a', true]
bool
return $a === $b
int
return $a + $b
string
return $a . $b
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Additional analysis (should check if all is applicable):
array
,,object
callable
(anditerable
?);resource
;callable
;void
;return;
;return
statement;return
statements;return
(eg.return; return $unreacheable;
);throw
;int[]
from one type array (eg.[1, 2, 3]
);mixed[]
from mixed type array (eg.[1, 'a', true]
);bool
(eg.return $a === $b
);int
(eg.return $a + $b
);string
(eg.return $a . $b
);The text was updated successfully, but these errors were encountered: