function AnnotatedClassDiscoveryTest::provideBadAnnotations

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Plugin/Discovery/AnnotatedClassDiscoveryTest.php \Drupal\Tests\Component\Plugin\Discovery\AnnotatedClassDiscoveryTest::provideBadAnnotations()
  2. 8.9.x core/tests/Drupal/Tests/Component/Plugin/Discovery/AnnotatedClassDiscoveryTest.php \Drupal\Tests\Component\Plugin\Discovery\AnnotatedClassDiscoveryTest::provideBadAnnotations()
  3. 11.x core/tests/Drupal/Tests/Component/Plugin/Discovery/AnnotatedClassDiscoveryTest.php \Drupal\Tests\Component\Plugin\Discovery\AnnotatedClassDiscoveryTest::provideBadAnnotations()

All the Drupal documentation standards tags.

File

core/tests/Drupal/Tests/Component/Plugin/Discovery/AnnotatedClassDiscoveryTest.php, line 27

Class

AnnotatedClassDiscoveryTest
@coversDefaultClass \Drupal\Component\Annotation\Plugin\Discovery\AnnotatedClassDiscovery[[api-linebreak]]

Namespace

Drupal\Tests\Component\Plugin\Discovery

Code

public static function provideBadAnnotations() {
  return [
    [
      'addtogroup',
    ],
    [
      'code',
    ],
    [
      'defgroup',
    ],
    [
      'deprecated',
    ],
    [
      'endcode',
    ],
    [
      'endlink',
    ],
    [
      'file',
    ],
    [
      'ingroup',
    ],
    [
      'group',
    ],
    [
      'link',
    ],
    [
      'mainpage',
    ],
    [
      'param',
    ],
    [
      'ref',
    ],
    [
      'return',
    ],
    [
      'section',
    ],
    [
      'see',
    ],
    [
      'subsection',
    ],
    [
      'throws',
    ],
    [
      'todo',
    ],
    [
      'var',
    ],
    [
      '{',
    ],
    [
      '}',
    ],
  ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.