whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
hisorange
/
browser-detect
/
src
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/hisorange/browser-detect/src/Facade.php
<?php namespace hisorange\BrowserDetect; use Illuminate\Support\Facades\Facade as BaseFacade; /** * Facading class to mask the service behind the "Browser" class. * * @method static bool isMobile() * @method static bool isTablet() * @method static bool isDesktop() * @method static bool isChrome() * @method static bool isFirefox() * @method static bool isOpera() * @method static bool isSafari() * @method static bool isIE() * @method static bool isEdge() * @method static bool isWindows() * @method static bool isAndroid() * @method static bool isMac() * @method static bool isLinux() * @method static bool isInApp() * @method static bool isBot() * @method static bool isIEVersion() * @method static string browserEngine() * @method static string browserName() * @method static string browserVersion() * @method static string deviceFamily() * @method static string deviceModel() * @method static string deviceType() * @method static string platformName() * @method static string platformVersion() * @method static string userAgent() * @method static string|null platformFamily() * @method static string|null browserFamily() * @method static int browserVersionMajor() * @method static int browserVersionMinor() * @method static int browserVersionPatch() * @method static int platformVersionMajor() * @method static int platformVersionMinor() * @method static int platformVersionPatch() * * @example Browser::isMobile(); * @package hisorange\BrowserDetect */ class Facade extends BaseFacade { /** * @inheritdoc */ protected static function getFacadeAccessor(): string { return 'browser-detect'; } }
Copyright ©2021 || Defacer Indonesia