Skip to content
Snippets Groups Projects
Verified Commit 36a8edd9 authored by Jess's avatar Jess
Browse files

Issue #3327853 by Spokje, bbrala, longwave: Don't allow {@inheritDoc} annotation in PHPDocBlocks

parent c28711d7
No related branches found
No related tags found
32 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!54479.5.x SF update,!5014Issue #3071143: Table Render Array Example Is Incorrect,!4868Issue #1428520: Improve menu parent link selection,!4289Issue #1344552 by marcingy, Niklas Fiekas, Ravi.J, aleevas, Eduardo Morales...,!4114Issue #2707291: Disable body-level scrolling when a dialog is open as a modal,!4100Issue #3249600: Add support for PHP 8.1 Enums as allowed values for list_* data types,!3630Issue #2815301 by Chi, DanielVeza, kostyashupenko, smustgrave: Allow to create...,!3600Issue #3344629: Passing null to parameter #1 ($haystack) of type string is deprecated,!3291Issue #3336463: Rewrite rules for gzipped CSS and JavaScript aggregates never match,!2378Issue #2875033: Optimize joins and table selection in SQL entity query implementation,!2334Issue #3228209: Add hasRole() method to AccountInterface,!2074Issue #2707689: NodeForm::actions() checks for delete access on new entities,!2062Issue #3246454: Add weekly granularity to views date sort,!1591Issue #3199697: Add JSON:API Translation experimental module,!1484Exposed filters get values from URL when Ajax is on,!1255Issue #3238922: Refactor (if feasible) uses of the jQuery serialize function to use vanillaJS,!1162Issue #3100350: Unable to save '/' root path alias,!1105Issue #3025039: New non translatable field on translatable content throws error,!1073issue #3191727: Focus states on mobile second level navigation items fixed,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!957Added throwing of InvalidPluginDefinitionException from getDefinition().,!925Issue #2339235: Remove taxonomy hard dependency on node module,!877Issue #2708101: Default value for link text is not saved,!872Draft: Issue #3221319: Race condition when creating menu links and editing content deletes menu links,!844Resolve #3036010 "Updaters",!617Issue #3043725: Provide a Entity Handler for user cancelation,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493,!485Sets the autocomplete attribute for username/password input field on login form.,!30Issue #3182188: Updates composer usage to point at ./vendor/bin/composer
Showing
with 47 additions and 31 deletions
...@@ -29,7 +29,7 @@ public function __construct(SelectionPluginManagerInterface $selection_manager) ...@@ -29,7 +29,7 @@ public function __construct(SelectionPluginManagerInterface $selection_manager)
} }
/** /**
* {@inheritDoc} * {@inheritdoc}
*/ */
public function getMatches($target_type, $selection_handler, $selection_settings, $string = '') { public function getMatches($target_type, $selection_handler, $selection_settings, $string = '') {
$matches = []; $matches = [];
......
...@@ -55,7 +55,7 @@ public function __construct(array $configuration, string $plugin_id, CKEditor5Pl ...@@ -55,7 +55,7 @@ public function __construct(array $configuration, string $plugin_id, CKEditor5Pl
} }
/** /**
* {@inheritDoc} * {@inheritdoc}
*/ */
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static( return new static(
......
...@@ -48,7 +48,7 @@ public function __construct(array $configuration, string $plugin_id, CKEditor5Pl ...@@ -48,7 +48,7 @@ public function __construct(array $configuration, string $plugin_id, CKEditor5Pl
} }
/** /**
* {@inheritDoc} * {@inheritdoc}
*/ */
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static( return new static(
......
...@@ -23,7 +23,7 @@ public function getValueOptions() { ...@@ -23,7 +23,7 @@ public function getValueOptions() {
} }
/** /**
* {@inheritDoc} * {@inheritdoc}
*/ */
protected function valueForm(&$form, FormStateInterface $form_state) { protected function valueForm(&$form, FormStateInterface $form_state) {
parent::valueForm($form, $form_state); parent::valueForm($form, $form_state);
......
...@@ -13,28 +13,28 @@ ...@@ -13,28 +13,28 @@
class DummyExternalReadOnlyWrapper extends ReadOnlyStream { class DummyExternalReadOnlyWrapper extends ReadOnlyStream {
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public static function getType() { public static function getType() {
return StreamWrapperInterface::READ_VISIBLE; return StreamWrapperInterface::READ_VISIBLE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function getName() { public function getName() {
return t('Dummy external stream wrapper (readonly)'); return t('Dummy external stream wrapper (readonly)');
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function getDescription() { public function getDescription() {
return t('Dummy external read-only stream wrapper for testing.'); return t('Dummy external read-only stream wrapper for testing.');
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function getExternalUrl() { public function getExternalUrl() {
[, $target] = explode('://', $this->uri, 2); [, $target] = explode('://', $this->uri, 2);
...@@ -42,105 +42,105 @@ public function getExternalUrl() { ...@@ -42,105 +42,105 @@ public function getExternalUrl() {
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function realpath() { public function realpath() {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function dirname($uri = NULL) { public function dirname($uri = NULL) {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function dir_closedir() { public function dir_closedir() {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function dir_opendir($path, $options) { public function dir_opendir($path, $options) {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function dir_readdir() { public function dir_readdir() {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function dir_rewinddir() { public function dir_rewinddir() {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function stream_cast($cast_as) { public function stream_cast($cast_as) {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function stream_close() { public function stream_close() {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function stream_eof() { public function stream_eof() {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function stream_read($count) { public function stream_read($count) {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function stream_seek($offset, $whence = SEEK_SET) { public function stream_seek($offset, $whence = SEEK_SET) {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function stream_set_option($option, $arg1, $arg2) { public function stream_set_option($option, $arg1, $arg2) {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function stream_stat() { public function stream_stat() {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function stream_tell() { public function stream_tell() {
return FALSE; return FALSE;
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function url_stat($path, $flags) { public function url_stat($path, $flags) {
return FALSE; return FALSE;
......
...@@ -46,7 +46,7 @@ class LinkCollectionNormalizerTest extends KernelTestBase { ...@@ -46,7 +46,7 @@ class LinkCollectionNormalizerTest extends KernelTestBase {
protected $testUsers; protected $testUsers;
/** /**
* {@inheritDoc} * {@inheritdoc}
*/ */
protected static $modules = [ protected static $modules = [
'jsonapi', 'jsonapi',
...@@ -56,7 +56,7 @@ class LinkCollectionNormalizerTest extends KernelTestBase { ...@@ -56,7 +56,7 @@ class LinkCollectionNormalizerTest extends KernelTestBase {
]; ];
/** /**
* {@inheritDoc} * {@inheritdoc}
*/ */
protected function setUp(): void { protected function setUp(): void {
parent::setUp(); parent::setUp();
......
...@@ -506,7 +506,7 @@ public function getIdMap() { ...@@ -506,7 +506,7 @@ public function getIdMap() {
} }
/** /**
* {@inheritDoc} * {@inheritdoc}
*/ */
public function getRequirements(): array { public function getRequirements(): array {
return $this->requirements; return $this->requirements;
......
...@@ -364,7 +364,7 @@ public function rollbackSavepoint($savepoint_name = 'mimic_implicit_commit') { ...@@ -364,7 +364,7 @@ public function rollbackSavepoint($savepoint_name = 'mimic_implicit_commit') {
} }
/** /**
* {@inheritDoc} * {@inheritdoc}
*/ */
public function hasJson(): bool { public function hasJson(): bool {
try { try {
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
class JSInteractionTestForm extends FormBase { class JSInteractionTestForm extends FormBase {
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function getFormId() { public function getFormId() {
return __CLASS__; return __CLASS__;
......
...@@ -40,7 +40,7 @@ class UserControllerTest extends KernelTestBase { ...@@ -40,7 +40,7 @@ class UserControllerTest extends KernelTestBase {
]; ];
/** /**
* {@inheritDoc} * {@inheritdoc}
*/ */
protected function setUp(): void { protected function setUp(): void {
......
...@@ -18,7 +18,7 @@ public function getViewsData() { ...@@ -18,7 +18,7 @@ public function getViewsData() {
} }
/** /**
* @inheritDoc * {@inheritdoc}
*/ */
public function getViewsTableForEntityType(EntityTypeInterface $entity_type) { public function getViewsTableForEntityType(EntityTypeInterface $entity_type) {
return 'views_config_entity_test'; return 'views_config_entity_test';
......
...@@ -93,7 +93,7 @@ public function onKernelRequest(RequestEvent $event) { ...@@ -93,7 +93,7 @@ public function onKernelRequest(RequestEvent $event) {
} }
/** /**
* {@inheritDoc} * {@inheritdoc}
*/ */
public static function getSubscribedEvents(): array { public static function getSubscribedEvents(): array {
// Use a priority of 190 in order to run after the generic core subscriber. // Use a priority of 190 in order to run after the generic core subscriber.
......
...@@ -251,6 +251,22 @@ ...@@ -251,6 +251,22 @@
<rule ref="PSR2.Namespaces.NamespaceDeclaration"/> <rule ref="PSR2.Namespaces.NamespaceDeclaration"/>
<rule ref="PSR2.Namespaces.UseDeclaration"/> <rule ref="PSR2.Namespaces.UseDeclaration"/>
<!-- SlevomatCodingStandard sniffs -->
<rule ref="SlevomatCodingStandard.Commenting.ForbiddenAnnotations">
<properties>
<property name="forbiddenAnnotations" type="array">
<element value="@inheritDoc"/>
</property>
</properties>
</rule>
<rule ref="SlevomatCodingStandard.Commenting.ForbiddenComments">
<properties>
<property name="forbiddenCommentPatterns" type="array">
<element value="/@inheritDoc/"/>
</property>
</properties>
</rule>
<!-- Squiz sniffs --> <!-- Squiz sniffs -->
<rule ref="Squiz.Arrays.ArrayBracketSpacing"/> <rule ref="Squiz.Arrays.ArrayBracketSpacing"/>
<rule ref="Squiz.Arrays.ArrayDeclaration"> <rule ref="Squiz.Arrays.ArrayDeclaration">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment