shy() public method

See also: Bolt\Twig\Handler\HtmlHandler::shy()
public shy ( $str )
Exemplo n.º 1
0
 public function testShy()
 {
     $app = $this->getApp();
     $handlers = $this->getTwigHandlers($app);
     $handlers['html'] = $this->getMockHandler('HtmlHandler', 'shy');
     $twig = new TwigExtension($app, $handlers, true);
     $twig->shy(null);
 }