public function __invoke(Filter $node, Compiler $compiler)
 {
     $parser = new Parser();
     return $parser->parse($this->getNodeString($node, $compiler));
 }
示例#2
0
 /**
  * @inheritdoc
  */
 public function parse($text)
 {
     return trim(parent::parse($text));
 }
示例#3
0
 public function parse($string, $path = null)
 {
     return $this->parser->parse($string);
 }