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
One should not reference fully qualified namespaces but always import.
This:
use YadaYada\FooException; use YadaYada\Foo; /** @throws FooException */ /** @param Foo */ function (Foo $foo) {}
Not that:
/** @throws \YadaYada\FooException */ /** @param \YadaYada\Foo */ function (\YadaYada\Foo $foo) {}
… and many more cases. Straight from my head:
@throws
@param
@return
implements
extends
new
We should still allow for partial use statements thow:
use Doctrine\ORM\Annotations as ORM; /** @ORM\Foo() */
The text was updated successfully, but these errors were encountered:
No branches or pull requests
One should not reference fully qualified namespaces but always import.
This:
Not that:
… and many more cases. Straight from my head:
@throws
@param
@return
implements
/extends
new
statementWe should still allow for partial use statements thow:
The text was updated successfully, but these errors were encountered: