diff --git a/core/lib/Drupal/Core/Wizard/WizardFormController.php b/core/lib/Drupal/Core/Wizard/WizardFormController.php index 465df44f86..7d8cadc358 100644 --- a/core/lib/Drupal/Core/Wizard/WizardFormController.php +++ b/core/lib/Drupal/Core/Wizard/WizardFormController.php @@ -12,7 +12,7 @@ use Drupal\user\TempStoreFactory; /** - * Form controller for the Views edit form. + * A form controller which builds a full entity over a series of short steps. */ class WizardFormController extends EntityFormController { @@ -84,8 +84,9 @@ public function create($entity_type, $operation, $id = NULL, $steps_key = 'steps } } $definition = $entity->entityInfo(); - // This could be any entity form controller and is not necessarily documented - // in the steps. If it is not in the steps, it will not have a title. + // This could be any entity form controller and is not necessarily + // documented in the steps. If it is not in the steps, it will not have a + // title. if (isset($definition[$steps_key][$operation])) { drupal_set_title($definition[$steps_key][$operation]); } @@ -93,7 +94,7 @@ public function create($entity_type, $operation, $id = NULL, $steps_key = 'steps } /** - * Overrides Drupal\Core\Entity\EntityFormController::init(). + * {@inheritdoc} */ protected function init(array &$form_state, EntityInterface $entity) { parent::init($form_state, $entity);