shell bypass 403
<?php
namespace hisorange\BrowserDetect\Contracts;
/**
* Interface ParserInterface
*
* @package hisorange\BrowserDetect
*/
interface ParserInterface
{
/**
* Get a result object from the current visitors 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;
}