titanscssc::op_and PHP 메소드

op_and() 보호된 메소드

protected op_and ( $left, $right, $shouldEval )
    protected function op_and($left, $right, $shouldEval)
    {
        if (!$shouldEval) {
            return;
        }
        if ($left != self::$false) {
            return $right;
        }
        return $left;
    }
titanscssc