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

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

use DeviceDetector\DeviceDetector;
use Piwik\Container\StaticContainer;

class DeviceDetectorFactory
{
    /**
     * Returns a Singleton instance of DeviceDetector for the given user agent.
     * @param string $userAgent
     * @return DeviceDetector
     * @deprecated Should get a factory via StaticContainer and call makeInstance() on it instead
     */
    public static function getInstance($userAgent)
    {
        $factory = StaticContainer::get(\Piwik\DeviceDetector\DeviceDetectorFactory::class);
        return $factory->makeInstance($userAgent);
    }
}