You are here

public function FormStateDecoratorBase::setInvalidToken in Markdown 8.2

Flags the form state as having or not an invalid token.

Parameters

bool $invalid_token: Whether the form has an invalid token.

Return value

$this

Overrides FormStateInterface::setInvalidToken

File

src/BcSupport/FormStateDecoratorBase.php, line 687

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

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