You are here

public function FormStateDecoratorBase::setSubmitted in Markdown 8.2

Sets that the form has been submitted.

Return value

$this

Overrides FormStateInterface::setSubmitted

File

src/BcSupport/FormStateDecoratorBase.php, line 323

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

public function setSubmitted() {
  $this->decoratedFormState
    ->setSubmitted();
  return $this;
}