doctrine_annotation_array_assignment.rst 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. =============================================
  2. Rule ``doctrine_annotation_array_assignment``
  3. =============================================
  4. Doctrine annotations must use configured operator for assignment in arrays.
  5. Configuration
  6. -------------
  7. ``ignored_tags``
  8. ~~~~~~~~~~~~~~~~
  9. List of tags that must not be treated as Doctrine Annotations.
  10. Allowed types: ``array``
  11. Default value: ``['abstract', 'access', 'code', 'deprec', 'encode', 'exception', 'final', 'ingroup', 'inheritdoc', 'inheritDoc', 'magic', 'name', 'toc', 'tutorial', 'private', 'static', 'staticvar', 'staticVar', 'throw', 'api', 'author', 'category', 'copyright', 'deprecated', 'example', 'filesource', 'global', 'ignore', 'internal', 'license', 'link', 'method', 'package', 'param', 'property', 'property-read', 'property-write', 'return', 'see', 'since', 'source', 'subpackage', 'throws', 'todo', 'TODO', 'usedBy', 'uses', 'var', 'version', 'after', 'afterClass', 'backupGlobals', 'backupStaticAttributes', 'before', 'beforeClass', 'codeCoverageIgnore', 'codeCoverageIgnoreStart', 'codeCoverageIgnoreEnd', 'covers', 'coversDefaultClass', 'coversNothing', 'dataProvider', 'depends', 'expectedException', 'expectedExceptionCode', 'expectedExceptionMessage', 'expectedExceptionMessageRegExp', 'group', 'large', 'medium', 'preserveGlobalState', 'requires', 'runTestsInSeparateProcesses', 'runInSeparateProcess', 'small', 'test', 'testdox', 'ticket', 'uses', 'SuppressWarnings', 'noinspection', 'package_version', 'enduml', 'startuml', 'psalm', 'phpstan', 'template', 'fix', 'FIXME', 'fixme', 'override']``
  12. ``operator``
  13. ~~~~~~~~~~~~
  14. The operator to use.
  15. Allowed values: ``':'`` and ``'='``
  16. Default value: ``'='``
  17. Examples
  18. --------
  19. Example #1
  20. ~~~~~~~~~~
  21. *Default* configuration.
  22. .. code-block:: diff
  23. --- Original
  24. +++ New
  25. <?php
  26. /**
  27. - * @Foo({bar : "baz"})
  28. + * @Foo({bar = "baz"})
  29. */
  30. class Bar {}
  31. Example #2
  32. ~~~~~~~~~~
  33. With configuration: ``['operator' => ':']``.
  34. .. code-block:: diff
  35. --- Original
  36. +++ New
  37. <?php
  38. /**
  39. - * @Foo({bar = "baz"})
  40. + * @Foo({bar : "baz"})
  41. */
  42. class Bar {}
  43. Rule sets
  44. ---------
  45. The rule is part of the following rule set:
  46. - `@DoctrineAnnotation <./../../ruleSets/DoctrineAnnotation.rst>`_ with config:
  47. ``['operator' => ':']``