- πΊπΈUnited States kevinquillen
Running into this same issue. It does not work with the latest version, throwing the same error mentioned in the original post.
FOUND 1 ERROR AFFECTING 1 LINE
----------------------------------------------------------------------
1 | ERROR | [x] Missing file doc comment - Status changed to Needs review
over 1 year ago 11:43am 21 August 2023 - π·π΄Romania claudiu.cristea Arad π·π΄
Added as PR: https://github.com/pfrenssen/coder/pull/209
- π·π΄Romania claudiu.cristea Arad π·π΄
@klausi, current tests are green but no new tests
- π·π΄Romania claudiu.cristea Arad π·π΄
OK, I give up. No idea on how to test this
- Assigned to pfrenssen
- π§π¬Bulgaria pfrenssen Sofia
Thanks a lot for making the MR! I will add some test coverage.
- Issue was unassigned.
- Status changed to Fixed
about 1 year ago 8:05pm 23 August 2023 -
pfrenssen β
committed 7a35274f on 8.3.x authored by
claudiu.cristea β
feat(enums): Add support for enums (#3283741 by chfoidl, claudiu.cristea...
-
pfrenssen β
committed 7a35274f on 8.3.x authored by
claudiu.cristea β
Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
5 months ago 7:30pm 11 June 2024 - πΊπΈUnited States Alexander Allen Bushwick, Brooklyn
Unrelated to the file comment, but still related to enums, the coding standard does not let you add comments, specifically doc-block comments to enum cases.
Inline doc block comments are not allowed; use "/* Comment */" or "// Comment" instead (Drupal.Commenting.InlineComment.DocBlock)
Example:
enum OAuthTokenState { case VALID; /** * When the Cache API marks an item as invalid or is not able to find it. */ case INVALID; }