Path : /var/www/html/jewelry-pos/vendor/hisorange/browser-detect/src/Contracts/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/jewelry-pos/vendor/hisorange/browser-detect/src/Contracts/ParserInterface.php |
<?php namespace hisorange\BrowserDetect\Contracts; /** * Interface ParserInterface * * @package hisorange\BrowserDetect */ interface ParserInterface { /** * Get a result object from the current visitor user agent string. * * @return ResultInterface */ public function detect(): ResultInterface; /** * Parse the user agent and provide a result object. * * @example Browser::parse('Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14'); * * @param string $agent User agent string. * @return ResultInterface */ public function parse(string $agent): ResultInterface; /** * Read the final config for the instance. * * @return array */ public function config(): array; }