Example #1
0
 /**
  * Return the value of an option, skipping the optional equal sign.
  *
  * @return mixed
  * @throws \TYPO3\CMS\Core\Database\Schema\Exception\StatementException
  */
 protected function tableOptionValue()
 {
     // Skip the optional equals sign
     if ($this->lexer->isNextToken(Lexer::T_EQUALS)) {
         $this->match(Lexer::T_EQUALS);
     }
     $this->lexer->moveNext();
     return $this->lexer->token['value'];
 }