Greater.php 390B

123456789101112131415161718
  1. <?php
  2. /*
  3. * This file is part of Twig.
  4. *
  5. * (c) 2010 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. class Twig_Node_Expression_Binary_Greater extends Twig_Node_Expression_Binary
  11. {
  12. public function operator(Twig_Compiler $compiler)
  13. {
  14. return $compiler->raw('>');
  15. }
  16. }