����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.144.19.6 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirmacademy.com/vendor/hisorange/browser-detect/src/ |
Upload File : |
<?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 mobileGrade() * @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'; } }