You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While working on applying this standard on doctrine/orm, we found with @SenseException that the following will not raise any error:
// declarationsclassFoo
{
/** @var int */private$bar;
/** @var int */private$baz;
}
classFooBar
{
}
We would expect errors about the lack of space between property declarations
and class declarations. Does anyone know of a sniff that we could integrate to doctrine/coding-standard for this? @kukulich maybe?
Note that in PHP 7.4, I personally would be ok with a lack of space between property declarations when they fit on one line.
The text was updated successfully, but these errors were encountered:
While working on applying this standard on
doctrine/orm
, we found with @SenseException that the following will not raise any error:We would expect errors about the lack of space between property declarations
and class declarations. Does anyone know of a sniff that we could integrate to
doctrine/coding-standard
for this? @kukulich maybe?Note that in PHP 7.4, I personally would be ok with a lack of space between property declarations when they fit on one line.
The text was updated successfully, but these errors were encountered: