titanscssc::op_and PHP Method

op_and() protected method

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