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
/** * @var DateTimeImmutable */private DateTimeImmutable $date;
/** * @return DateTimeImmutable */
#[GraphQL\Field] // This is problem :(publicfunctiongetDate(): DateTimeImmutable
{
return$this->date;
}
----------------------------------------------------------------------
36 | ERROR | [x] Expected 1 blank line between class members, found 5.
| | (SlevomatCodingStandard.Classes.ClassMemberSpacing.IncorrectCountOfBlankLinesBetweenMembers)
----------------------------------------------------------------------
Without #[GraphQL\Field] line everything works well.