| 1 | <?php |
||
| 20 | class MobileDetector implements MobileDetectorInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var Zend_Http_UserAgent |
||
| 24 | */ |
||
| 25 | private $userAgent; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * MobileDetector constructor. |
||
| 29 | * @param Zend_Http_UserAgent $userAgent |
||
| 30 | */ |
||
| 31 | public function __construct( |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return bool |
||
| 39 | */ |
||
| 40 | public function isMobileDevice(): bool |
||
| 48 | } |
||
| 49 |