localeDateTime() public method

See also: Bolt\Twig\Handler\TextHandler::localeDateTime()
public localeDateTime ( $dateTime, $format = '%B %e, %Y %H:%M' )
Example #1
0
 public function testLocaleDateTime()
 {
     $app = $this->getApp();
     $handlers = $this->getTwigHandlers($app);
     $handlers['text'] = $this->getMockHandler('TextHandler', 'localeDateTime');
     $twig = new TwigExtension($app, $handlers, true);
     $twig->localeDateTime(null, null);
 }