- Issue created by @mondrake
This
class Schema extends BaseMySqlSchema {
/**
* {@inheritdoc}
*/
// @phpstan-ignore-next-line missingType.return
public function addField($table, $field, $spec, $keys_new = []) {
if ..
fails PHPCS. If you move the @phpstan annotation above the docblock, PHPStan fails because it's not the next line to be ignored.
This
class Schema extends BaseMySqlSchema {
// @phpcs:disable
/**
* {@inheritdoc}
*/
// @phpstan-ignore-next-line missingType.return
public function addField($table, $field, $spec, $keys_new = []) {
// @phpcs:enable
if ..
works but obviously has a risk of introducing uncompliant code.
Skip @phpstan-xxx
inline annotations when sniffing.
Active
8.3
Coder Sniffer