App\Libraries\Utils::getResllerType PHP Method

getResllerType() public static method

public static getResllerType ( )
    public static function getResllerType()
    {
        return isset($_ENV['RESELLER_TYPE']) ? $_ENV['RESELLER_TYPE'] : false;
    }

Usage Example

Example #1
0
 public static function isReseller()
 {
     return Utils::getResllerType() ? true : false;
 }