titanscssc::op_or PHP Method

op_or() protected method

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