Issue #3132287 by jungle, dww, xjm: Fix wrong usages of {@inheritdoc}
parent
95ff62a05c
commit
ca7abe1e11
|
@ -381,7 +381,7 @@ abstract class FieldConfigBase extends ConfigEntityBase implements FieldConfigIn
|
|||
}
|
||||
|
||||
/**
|
||||
* [@inheritdoc}
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function setRequired($required) {
|
||||
$this->required = $required;
|
||||
|
|
|
@ -10,7 +10,7 @@ use Drupal\Component\ProxyBuilder\ProxyBuilder as BaseProxyBuilder;
|
|||
class ProxyBuilder extends BaseProxyBuilder {
|
||||
|
||||
/**
|
||||
* {@inheritdoc{
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function buildUseStatements() {
|
||||
$output = parent::buildUseStatements();
|
||||
|
|
|
@ -72,7 +72,7 @@ class ContentTranslationSynchronizedFieldsConstraintValidator extends Constraint
|
|||
}
|
||||
|
||||
/**
|
||||
* [@inheritdoc}
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static function create(ContainerInterface $container) {
|
||||
return new static(
|
||||
|
|
|
@ -16,14 +16,14 @@ use Drupal\Core\Entity\Entity\EntityFormDisplay;
|
|||
class NestedEntityTestForm extends FormBase {
|
||||
|
||||
/**
|
||||
* {@inheritdoc]
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getFormId() {
|
||||
return 'field_test_entity_nested_form';
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc]
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function buildForm(array $form, FormStateInterface $form_state, EntityInterface $entity_1 = NULL, EntityInterface $entity_2 = NULL) {
|
||||
// First entity.
|
||||
|
@ -66,7 +66,7 @@ class NestedEntityTestForm extends FormBase {
|
|||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc]
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function validateForm(array &$form, FormStateInterface $form_state) {
|
||||
$entity_1 = $form_state->get('entity_1');
|
||||
|
|
|
@ -203,7 +203,7 @@ class RestResourceConfig extends ConfigEntityBase implements RestResourceConfigI
|
|||
}
|
||||
|
||||
/**
|
||||
* (@inheritdoc)
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function calculateDependencies() {
|
||||
parent::calculateDependencies();
|
||||
|
|
Loading…
Reference in New Issue