| 1 | <?php |
||
| 16 | class CrossjoinBrowscap implements AdapterInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var stdClass |
||
| 20 | */ |
||
| 21 | private $browser; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param string $userAgent user agent string |
||
| 25 | */ |
||
| 26 | public function __construct($userAgent) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function getName() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return int |
||
| 42 | */ |
||
| 43 | public function getVersion() |
||
| 47 | } |
||
| 48 |