Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Base.php « Columns « DevicesDetection « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a28b7de08a2b179599cc7c595b81c3e5044980e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 */
namespace Piwik\Plugins\DevicesDetection\Columns;

use Piwik\Container\StaticContainer;
use Piwik\DeviceDetector\DeviceDetectorFactory;
use Piwik\Plugin\Dimension\VisitDimension;

abstract class Base extends VisitDimension
{
    protected function getUAParser($userAgent, $clientHints)
    {
        return StaticContainer::get(DeviceDetectorFactory::class)->makeInstance($userAgent, $clientHints);
    }
}