common\Language::get PHP Method

get() public static method

public static get ( ) : string
return string
    public static function get()
    {
        $application = 'Backend';
        if (Model::has('request') && Model::get('request')->attributes->has('_route') && stripos(Model::get('request')->attributes->get('_route'), 'frontend') === 0) {
            $application = 'Frontend';
        }
        return $application . '\\Core\\Language\\Language';
    }