Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Template/Compiler/Syntax/NullValue.php
<?php

namespace XF\Template\Compiler\Syntax;

use
XF\Template\Compiler;

class
NullValue extends AbstractSyntax
{
    public function
__construct($line)
    {
       
$this->line = $line;
    }

    public function
compile(Compiler $compiler, array $context, $inlineExpected)
    {
        return
'null';
    }
}