Null.php 636B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /*
  3. * This file is part of Twig.
  4. *
  5. * (c) 2011 Fabien Potencier
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. /**
  11. * Checks that a variable is null.
  12. *
  13. * <pre>
  14. * {{ var is none }}
  15. * </pre>
  16. *
  17. * @package twig
  18. * @author Fabien Potencier <fabien@symfony.com>
  19. */
  20. class Twig_Node_Expression_Test_Null extends Twig_Node_Expression_Test
  21. {
  22. public function compile(Twig_Compiler $compiler)
  23. {
  24. $compiler
  25. ->raw('(null === ')
  26. ->subcompile($this->getNode('node'))
  27. ->raw(')')
  28. ;
  29. }
  30. }