isMobileClient() public method

See also: Bolt\Twig\Handler\HtmlHandler::isMobileClient()
public isMobileClient ( )
Example #1
0
 public function testIsMobileClient()
 {
     $app = $this->getApp();
     $handlers = $this->getTwigHandlers($app);
     $handlers['html'] = $this->getMockHandler('HtmlHandler', 'isMobileClient');
     $twig = new TwigExtension($app, $handlers, true);
     $twig->isMobileClient(null);
 }