function AnnotatedClassDiscoveryTest::provideBadAnnotations
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Component/Plugin/Discovery/AnnotatedClassDiscoveryTest.php \Drupal\Tests\Component\Plugin\Discovery\AnnotatedClassDiscoveryTest::provideBadAnnotations()
- 10 core/tests/Drupal/Tests/Component/Plugin/Discovery/AnnotatedClassDiscoveryTest.php \Drupal\Tests\Component\Plugin\Discovery\AnnotatedClassDiscoveryTest::provideBadAnnotations()
- 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 25
Class
- AnnotatedClassDiscoveryTest
- @coversDefaultClass \Drupal\Component\Annotation\Plugin\Discovery\AnnotatedClassDiscovery
Namespace
Drupal\Tests\Component\Plugin\DiscoveryCode
public 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.