diff --git a/core/lib/Drupal/Core/EventSubscriber/DefaultExceptionHtmlSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/DefaultExceptionHtmlSubscriber.php index 2ae21143b2a..46336e0a26d 100644 --- a/core/lib/Drupal/Core/EventSubscriber/DefaultExceptionHtmlSubscriber.php +++ b/core/lib/Drupal/Core/EventSubscriber/DefaultExceptionHtmlSubscriber.php @@ -70,7 +70,7 @@ class DefaultExceptionHtmlSubscriber extends HttpExceptionSubscriberBase { } /** - * {@inheritDoc} + * {@inheritdoc} */ protected function getHandledFormats() { return ['html']; diff --git a/core/lib/Drupal/Core/EventSubscriber/ExceptionJsonSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/ExceptionJsonSubscriber.php index 0aefe961c37..c06adee4063 100644 --- a/core/lib/Drupal/Core/EventSubscriber/ExceptionJsonSubscriber.php +++ b/core/lib/Drupal/Core/EventSubscriber/ExceptionJsonSubscriber.php @@ -17,7 +17,7 @@ use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent; class ExceptionJsonSubscriber extends HttpExceptionSubscriberBase { /** - * {@inheritDoc} + * {@inheritdoc} */ protected function getHandledFormats() { return ['json']; diff --git a/core/lib/Drupal/Core/EventSubscriber/ExceptionTestSiteSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/ExceptionTestSiteSubscriber.php index 17c87a34c58..73b5ac055a8 100644 --- a/core/lib/Drupal/Core/EventSubscriber/ExceptionTestSiteSubscriber.php +++ b/core/lib/Drupal/Core/EventSubscriber/ExceptionTestSiteSubscriber.php @@ -23,7 +23,7 @@ class ExceptionTestSiteSubscriber extends HttpExceptionSubscriberBase { } /** - * {@inheritDoc} + * {@inheritdoc} */ protected function getHandledFormats() { return ['html']; diff --git a/core/lib/Drupal/Core/EventSubscriber/Fast404ExceptionHtmlSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/Fast404ExceptionHtmlSubscriber.php index 3f095b0f1ff..d3ae5d34038 100644 --- a/core/lib/Drupal/Core/EventSubscriber/Fast404ExceptionHtmlSubscriber.php +++ b/core/lib/Drupal/Core/EventSubscriber/Fast404ExceptionHtmlSubscriber.php @@ -59,7 +59,7 @@ class Fast404ExceptionHtmlSubscriber extends HttpExceptionSubscriberBase { } /** - * {@inheritDoc} + * {@inheritdoc} */ protected function getHandledFormats() { return ['html']; diff --git a/core/lib/Drupal/Core/Field/FieldTypePluginManager.php b/core/lib/Drupal/Core/Field/FieldTypePluginManager.php index 3d896b2752a..f99948a8f8e 100644 --- a/core/lib/Drupal/Core/Field/FieldTypePluginManager.php +++ b/core/lib/Drupal/Core/Field/FieldTypePluginManager.php @@ -156,7 +156,7 @@ class FieldTypePluginManager extends DefaultPluginManager implements FieldTypePl } /** - * @inheritdoc + * {@inheritdoc} */ public function getPluginClass($type) { $plugin_definition = $this->getDefinition($type, FALSE); diff --git a/core/lib/Drupal/Core/Language/LanguageManager.php b/core/lib/Drupal/Core/Language/LanguageManager.php index 092e9fe2f0f..4c0172dfd73 100644 --- a/core/lib/Drupal/Core/Language/LanguageManager.php +++ b/core/lib/Drupal/Core/Language/LanguageManager.php @@ -224,7 +224,7 @@ class LanguageManager implements LanguageManagerInterface { } /** - * @inheritdoc + * {@inheritdoc} */ public static function getStandardLanguageList() { // This list is based on languages available from localize.drupal.org. See diff --git a/core/lib/Drupal/Core/Routing/UrlGenerator.php b/core/lib/Drupal/Core/Routing/UrlGenerator.php index 62ece640dbe..9979b73b2a1 100644 --- a/core/lib/Drupal/Core/Routing/UrlGenerator.php +++ b/core/lib/Drupal/Core/Routing/UrlGenerator.php @@ -432,7 +432,7 @@ class UrlGenerator implements UrlGeneratorInterface { } /** - * {@inheritDoc} + * {@inheritdoc} */ public function supports($name) { // Support a route object and any string as route name. @@ -440,7 +440,7 @@ class UrlGenerator implements UrlGeneratorInterface { } /** - * {@inheritDoc} + * {@inheritdoc} */ public function getRouteDebugMessage($name, array $parameters = array()) { if (is_scalar($name)) { diff --git a/core/modules/link/src/Plugin/Validation/Constraint/LinkTypeConstraint.php b/core/modules/link/src/Plugin/Validation/Constraint/LinkTypeConstraint.php index bc5d72b00d6..fceb4c57d2b 100644 --- a/core/modules/link/src/Plugin/Validation/Constraint/LinkTypeConstraint.php +++ b/core/modules/link/src/Plugin/Validation/Constraint/LinkTypeConstraint.php @@ -30,7 +30,7 @@ class LinkTypeConstraint extends Constraint implements ConstraintValidatorInterf protected $context; /** - * {@inheritDoc} + * {@inheritdoc} */ public function initialize(ExecutionContextInterface $context) { $this->context = $context; diff --git a/core/modules/migrate/src/Plugin/migrate/id_map/Sql.php b/core/modules/migrate/src/Plugin/migrate/id_map/Sql.php index 7f97464067d..3bf3843a400 100644 --- a/core/modules/migrate/src/Plugin/migrate/id_map/Sql.php +++ b/core/modules/migrate/src/Plugin/migrate/id_map/Sql.php @@ -779,7 +779,7 @@ class Sql extends PluginBase implements MigrateIdMapInterface, ContainerFactoryP } /** - * @inheritdoc + * {@inheritdoc} */ public function currentDestination() { if ($this->valid()) { diff --git a/core/modules/options/src/Plugin/Field/FieldType/ListItemBase.php b/core/modules/options/src/Plugin/Field/FieldType/ListItemBase.php index 6395028025f..c38b20eeecc 100644 --- a/core/modules/options/src/Plugin/Field/FieldType/ListItemBase.php +++ b/core/modules/options/src/Plugin/Field/FieldType/ListItemBase.php @@ -252,7 +252,7 @@ abstract class ListItemBase extends FieldItemBase implements OptionsProviderInte } /** - * @inheritdoc. + * {@inheritdoc} */ public static function storageSettingsToConfigData(array $settings) { if (isset($settings['allowed_values'])) { @@ -262,7 +262,7 @@ abstract class ListItemBase extends FieldItemBase implements OptionsProviderInte } /** - * @inheritdoc. + * {@inheritdoc} */ public static function storageSettingsFromConfigData(array $settings) { if (isset($settings['allowed_values'])) { diff --git a/core/modules/system/src/Tests/Entity/ContentEntityChangedTest.php b/core/modules/system/src/Tests/Entity/ContentEntityChangedTest.php index 564245b67b1..94c9b12bf95 100644 --- a/core/modules/system/src/Tests/Entity/ContentEntityChangedTest.php +++ b/core/modules/system/src/Tests/Entity/ContentEntityChangedTest.php @@ -40,7 +40,7 @@ class ContentEntityChangedTest extends EntityUnitTestBase { protected $mulRevChangedStorage; /** - * @inheritdoc + * {@inheritdoc} */ protected function setUp() { parent::setUp(); diff --git a/core/modules/system/src/Tests/Entity/EntityApiTest.php b/core/modules/system/src/Tests/Entity/EntityApiTest.php index 6176870736f..e8153ce607d 100644 --- a/core/modules/system/src/Tests/Entity/EntityApiTest.php +++ b/core/modules/system/src/Tests/Entity/EntityApiTest.php @@ -18,7 +18,7 @@ use Drupal\user\UserInterface; class EntityApiTest extends EntityUnitTestBase { /** - * @inheritdoc + * {@inheritdoc} */ protected function setUp() { parent::setUp(); diff --git a/core/modules/system/src/Tests/Entity/ValidReferenceConstraintValidatorTest.php b/core/modules/system/src/Tests/Entity/ValidReferenceConstraintValidatorTest.php index ef381896249..82c178a8874 100644 --- a/core/modules/system/src/Tests/Entity/ValidReferenceConstraintValidatorTest.php +++ b/core/modules/system/src/Tests/Entity/ValidReferenceConstraintValidatorTest.php @@ -30,7 +30,7 @@ class ValidReferenceConstraintValidatorTest extends EntityUnitTestBase { public static $modules = array('field', 'user'); /** - * @inheritdoc + * {@inheritdoc} */ public function setUp() { parent::setUp(); diff --git a/core/modules/system/src/Tests/System/TokenReplaceUnitTest.php b/core/modules/system/src/Tests/System/TokenReplaceUnitTest.php index cbffff75d6d..b8ac4f31ccc 100644 --- a/core/modules/system/src/Tests/System/TokenReplaceUnitTest.php +++ b/core/modules/system/src/Tests/System/TokenReplaceUnitTest.php @@ -21,7 +21,7 @@ use Drupal\Core\Render\BubbleableMetadata; class TokenReplaceUnitTest extends TokenReplaceUnitTestBase { /** - * @inheritdoc + * {@inheritdoc} */ protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalActionTest.php b/core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalActionTest.php index 729519a5050..8dc639248fb 100644 --- a/core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalActionTest.php +++ b/core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalActionTest.php @@ -17,7 +17,7 @@ use Drupal\Component\Plugin\Derivative\DeriverBase; class LocalActionTest extends DeriverBase { /** - * @inheritDoc + * {@inheritdoc} */ public function getDerivativeDefinitions($base_plugin_definition) { $this->derivatives['example'] = $base_plugin_definition + [ diff --git a/core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalTaskTestWithUnsafeTitle.php b/core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalTaskTestWithUnsafeTitle.php index af6ff917eb0..b8edba7963f 100644 --- a/core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalTaskTestWithUnsafeTitle.php +++ b/core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalTaskTestWithUnsafeTitle.php @@ -17,7 +17,7 @@ use Drupal\Component\Plugin\Derivative\DeriverBase; class LocalTaskTestWithUnsafeTitle extends DeriverBase { /** - * @inheritDoc + * {@inheritdoc} */ public function getDerivativeDefinitions($base_plugin_definition) { $this->derivatives['unsafe'] = [ diff --git a/core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalTask/TestTaskWithUserInput.php b/core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalTask/TestTaskWithUserInput.php index 6ef6102200a..aea3256af6c 100644 --- a/core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalTask/TestTaskWithUserInput.php +++ b/core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalTask/TestTaskWithUserInput.php @@ -13,7 +13,7 @@ use Symfony\Component\HttpFoundation\Request; class TestTaskWithUserInput extends LocalTaskDefault { /** - * @inheritDoc + * {@inheritdoc} */ public function getTitle(Request $request = NULL) { return ""; diff --git a/core/modules/user/src/Plugin/Validation/Constraint/UserMailRequired.php b/core/modules/user/src/Plugin/Validation/Constraint/UserMailRequired.php index 1204c7b3d74..d713bff5f3e 100644 --- a/core/modules/user/src/Plugin/Validation/Constraint/UserMailRequired.php +++ b/core/modules/user/src/Plugin/Validation/Constraint/UserMailRequired.php @@ -41,7 +41,7 @@ class UserMailRequired extends Constraint implements ConstraintValidatorInterfac protected $context; /** - * {@inheritDoc} + * {@inheritdoc} */ public function initialize(ExecutionContextInterface $context) { $this->context = $context; diff --git a/core/modules/views/src/Plugin/views/field/NumericField.php b/core/modules/views/src/Plugin/views/field/NumericField.php index 06f4a66b48d..0c514da36ed 100644 --- a/core/modules/views/src/Plugin/views/field/NumericField.php +++ b/core/modules/views/src/Plugin/views/field/NumericField.php @@ -138,7 +138,7 @@ class NumericField extends FieldPluginBase { } /** - * @inheritdoc + * {@inheritdoc} */ public function submitOptionsForm(&$form, FormStateInterface $form_state) { // Merge plural format options into one string and drop the individual diff --git a/core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php b/core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php index 4632db4dbc6..95acc95a947 100644 --- a/core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php +++ b/core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php @@ -1249,7 +1249,7 @@ abstract class WizardPluginBase extends PluginBase implements WizardInterface { } /** - * {@inheritDoc} + * {@inheritdoc} */ public function createView(array $form, FormStateInterface $form_state) { $view = $this->retrieveValidatedView($form, $form_state); diff --git a/core/tests/Drupal/Tests/Core/Image/ImageTest.php b/core/tests/Drupal/Tests/Core/Image/ImageTest.php index e81bb768a6d..d39d8ca8406 100644 --- a/core/tests/Drupal/Tests/Core/Image/ImageTest.php +++ b/core/tests/Drupal/Tests/Core/Image/ImageTest.php @@ -47,7 +47,7 @@ class ImageTest extends UnitTestCase { protected $toolkitOperation; /** - * @inheritdoc + * {@inheritdoc} */ protected function setUp() { // Use the Druplicon image.