diff --git a/core/lib/Drupal/Core/Entity/EntityAutocompleteMatcher.php b/core/lib/Drupal/Core/Entity/EntityAutocompleteMatcher.php index ba0dbf84f663..ab18ba090d7a 100644 --- a/core/lib/Drupal/Core/Entity/EntityAutocompleteMatcher.php +++ b/core/lib/Drupal/Core/Entity/EntityAutocompleteMatcher.php @@ -29,7 +29,7 @@ class EntityAutocompleteMatcher implements EntityAutocompleteMatcherInterface { } /** - * {@inheritDoc} + * {@inheritdoc} */ public function getMatches($target_type, $selection_handler, $selection_settings, $string = '') { $matches = []; diff --git a/core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/Media.php b/core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/Media.php index 2beb219ac776..c6b9f345a98a 100644 --- a/core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/Media.php +++ b/core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/Media.php @@ -55,7 +55,7 @@ class Media extends CKEditor5PluginDefault implements ContainerFactoryPluginInte } /** - * {@inheritDoc} + * {@inheritdoc} */ public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { return new static( diff --git a/core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/MediaLibrary.php b/core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/MediaLibrary.php index 47cf82319978..4196cd1b7b04 100644 --- a/core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/MediaLibrary.php +++ b/core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/MediaLibrary.php @@ -48,7 +48,7 @@ class MediaLibrary extends CKEditor5PluginDefault implements ContainerFactoryPlu } /** - * {@inheritDoc} + * {@inheritdoc} */ public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { return new static( diff --git a/core/modules/dblog/src/Plugin/views/filter/DblogTypes.php b/core/modules/dblog/src/Plugin/views/filter/DblogTypes.php index b6dd27f602ef..ed8f5471669c 100644 --- a/core/modules/dblog/src/Plugin/views/filter/DblogTypes.php +++ b/core/modules/dblog/src/Plugin/views/filter/DblogTypes.php @@ -23,7 +23,7 @@ class DblogTypes extends InOperator { } /** - * {@inheritDoc} + * {@inheritdoc} */ protected function valueForm(&$form, FormStateInterface $form_state) { parent::valueForm($form, $form_state); diff --git a/core/modules/file/tests/file_test/src/StreamWrapper/DummyExternalReadOnlyWrapper.php b/core/modules/file/tests/file_test/src/StreamWrapper/DummyExternalReadOnlyWrapper.php index 1727b7950ab6..347de4a3bef4 100644 --- a/core/modules/file/tests/file_test/src/StreamWrapper/DummyExternalReadOnlyWrapper.php +++ b/core/modules/file/tests/file_test/src/StreamWrapper/DummyExternalReadOnlyWrapper.php @@ -13,28 +13,28 @@ use Drupal\Core\StreamWrapper\StreamWrapperInterface; class DummyExternalReadOnlyWrapper extends ReadOnlyStream { /** - * @inheritDoc + * {@inheritdoc} */ public static function getType() { return StreamWrapperInterface::READ_VISIBLE; } /** - * @inheritDoc + * {@inheritdoc} */ public function getName() { return t('Dummy external stream wrapper (readonly)'); } /** - * @inheritDoc + * {@inheritdoc} */ public function getDescription() { return t('Dummy external read-only stream wrapper for testing.'); } /** - * @inheritDoc + * {@inheritdoc} */ public function getExternalUrl() { [, $target] = explode('://', $this->uri, 2); @@ -42,105 +42,105 @@ class DummyExternalReadOnlyWrapper extends ReadOnlyStream { } /** - * @inheritDoc + * {@inheritdoc} */ public function realpath() { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function dirname($uri = NULL) { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function dir_closedir() { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function dir_opendir($path, $options) { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function dir_readdir() { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function dir_rewinddir() { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function stream_cast($cast_as) { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function stream_close() { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function stream_eof() { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function stream_read($count) { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function stream_seek($offset, $whence = SEEK_SET) { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function stream_set_option($option, $arg1, $arg2) { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function stream_stat() { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function stream_tell() { return FALSE; } /** - * @inheritDoc + * {@inheritdoc} */ public function url_stat($path, $flags) { return FALSE; diff --git a/core/modules/jsonapi/tests/src/Kernel/Normalizer/LinkCollectionNormalizerTest.php b/core/modules/jsonapi/tests/src/Kernel/Normalizer/LinkCollectionNormalizerTest.php index 4282b62947f9..9a8d96d31e3c 100644 --- a/core/modules/jsonapi/tests/src/Kernel/Normalizer/LinkCollectionNormalizerTest.php +++ b/core/modules/jsonapi/tests/src/Kernel/Normalizer/LinkCollectionNormalizerTest.php @@ -46,7 +46,7 @@ class LinkCollectionNormalizerTest extends KernelTestBase { protected $testUsers; /** - * {@inheritDoc} + * {@inheritdoc} */ protected static $modules = [ 'jsonapi', @@ -56,7 +56,7 @@ class LinkCollectionNormalizerTest extends KernelTestBase { ]; /** - * {@inheritDoc} + * {@inheritdoc} */ protected function setUp(): void { parent::setUp(); diff --git a/core/modules/migrate/src/Plugin/Migration.php b/core/modules/migrate/src/Plugin/Migration.php index 8e3b3eac0a0a..0b4350fcfdff 100644 --- a/core/modules/migrate/src/Plugin/Migration.php +++ b/core/modules/migrate/src/Plugin/Migration.php @@ -496,7 +496,7 @@ class Migration extends PluginBase implements MigrationInterface, RequirementsIn } /** - * {@inheritDoc} + * {@inheritdoc} */ public function getRequirements(): array { return $this->requirements; diff --git a/core/modules/pgsql/src/Driver/Database/pgsql/Connection.php b/core/modules/pgsql/src/Driver/Database/pgsql/Connection.php index 8df056b6fb8a..efd86a4a2a83 100644 --- a/core/modules/pgsql/src/Driver/Database/pgsql/Connection.php +++ b/core/modules/pgsql/src/Driver/Database/pgsql/Connection.php @@ -368,7 +368,7 @@ class Connection extends DatabaseConnection { } /** - * {@inheritDoc} + * {@inheritdoc} */ public function hasJson(): bool { try { diff --git a/core/modules/system/tests/modules/js_interaction_test/src/Controller/JSInteractionTestForm.php b/core/modules/system/tests/modules/js_interaction_test/src/Controller/JSInteractionTestForm.php index 1439ec16b4ed..026b341d42fd 100644 --- a/core/modules/system/tests/modules/js_interaction_test/src/Controller/JSInteractionTestForm.php +++ b/core/modules/system/tests/modules/js_interaction_test/src/Controller/JSInteractionTestForm.php @@ -12,7 +12,7 @@ use Drupal\Core\Url; class JSInteractionTestForm extends FormBase { /** - * @inheritDoc + * {@inheritdoc} */ public function getFormId() { return __CLASS__; diff --git a/core/modules/user/tests/src/Kernel/Controller/UserControllerTest.php b/core/modules/user/tests/src/Kernel/Controller/UserControllerTest.php index 942a9f5b9a8c..c2d0f21041e1 100644 --- a/core/modules/user/tests/src/Kernel/Controller/UserControllerTest.php +++ b/core/modules/user/tests/src/Kernel/Controller/UserControllerTest.php @@ -40,7 +40,7 @@ class UserControllerTest extends KernelTestBase { ]; /** - * {@inheritDoc} + * {@inheritdoc} */ protected function setUp(): void { diff --git a/core/modules/views/tests/modules/views_config_entity_test/src/ViewsConfigEntityTestViewsData.php b/core/modules/views/tests/modules/views_config_entity_test/src/ViewsConfigEntityTestViewsData.php index 97138f1c404a..4e19ebc46437 100644 --- a/core/modules/views/tests/modules/views_config_entity_test/src/ViewsConfigEntityTestViewsData.php +++ b/core/modules/views/tests/modules/views_config_entity_test/src/ViewsConfigEntityTestViewsData.php @@ -18,7 +18,7 @@ class ViewsConfigEntityTestViewsData implements EntityViewsDataInterface { } /** - * @inheritDoc + * {@inheritdoc} */ public function getViewsTableForEntityType(EntityTypeInterface $entity_type) { return 'views_config_entity_test'; diff --git a/core/modules/workspaces/src/EventSubscriber/WorkspaceRequestSubscriber.php b/core/modules/workspaces/src/EventSubscriber/WorkspaceRequestSubscriber.php index 09f391d5042d..2cb7d012fb1b 100644 --- a/core/modules/workspaces/src/EventSubscriber/WorkspaceRequestSubscriber.php +++ b/core/modules/workspaces/src/EventSubscriber/WorkspaceRequestSubscriber.php @@ -93,7 +93,7 @@ class WorkspaceRequestSubscriber implements EventSubscriberInterface { } /** - * {@inheritDoc} + * {@inheritdoc} */ public static function getSubscribedEvents() { // Use a priority of 190 in order to run after the generic core subscriber. diff --git a/core/phpcs.xml.dist b/core/phpcs.xml.dist index af39457f6dfb..1546bc04fcc5 100644 --- a/core/phpcs.xml.dist +++ b/core/phpcs.xml.dist @@ -251,6 +251,22 @@ + + + + + + + + + + + + + + + +