for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace dokuwiki\Parsing\ParserMode;
/**
* This class and all the subclasses below are used to reduce the effort required to register
* modes with the Lexer.
*
* @author Harry Fuecks <[email protected]>
*/
abstract class AbstractMode implements ModeInterface
{
/** @var \dokuwiki\Parsing\Lexer\Lexer $Lexer will be injected on loading FIXME this should be done by setter */
public $Lexer;
protected $allowedModes = array();
/** @inheritdoc */
abstract public function getSort();
public function preConnect()
}
public function connectTo($mode)
public function postConnect()
public function accepts($mode)
return in_array($mode, (array) $this->allowedModes);