App\Libraries\Utils::getResllerType PHP 메소드

getResllerType() 공개 정적인 메소드

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

Usage Example

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