Skip to content

Commit

Permalink
Merge pull request #419 from derrabus/bugfix/ignore-nac-annotation
Browse files Browse the repository at this point in the history
Add NamedArgumentConstructor to reserved annotations
  • Loading branch information
greg0ire committed Jul 17, 2021
2 parents 092a246 + 70fe3ba commit f96567b
Showing 1 changed file with 6 additions and 5 deletions.
Expand Up @@ -12,12 +12,13 @@
final class ImplicitlyIgnoredAnnotationNames
{
private const Reserved = [
'Annotation' => true,
'Attribute' => true,
'Attributes' => true,
'Annotation' => true,
'Attribute' => true,
'Attributes' => true,
/* Can we enable this? 'Enum' => true, */
'Required' => true,
'Target' => true,
'Required' => true,
'Target' => true,
'NamedArgumentConstructor' => true,
];

private const WidelyUsedNonStandard = [
Expand Down

0 comments on commit f96567b

Please sign in to comment.