whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
hisorange
/
browser-detect
/
src
/
Contracts
/
Upload File:
files >> /home/kckglobal/www/portal/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; }
Copyright ©2021 || Defacer Indonesia