Файл: vendor/whichbrowser/parser/src/Analyser/Header/Useragent/Device/Gps.php
Строк: 20
<?php
namespace WhichBrowserAnalyserHeaderUseragentDevice;
use WhichBrowserConstants;
trait Gps
{
private function detectGps($ua)
{
if (!preg_match('/Nuvi/ui', $ua)) {
return;
}
$this->detectGarmin($ua);
}
/* Garmin Nuvi */
private function detectGarmin($ua)
{
if (preg_match('/Nuvi/u', $ua) && preg_match('/Qtopia/u', $ua)) {
$this->data->device->setIdentification([
'manufacturer' => 'Garmin',
'model' => 'Nuvi',
'type' => ConstantsDeviceType::GPS
]);
}
}
}