1<?php
2
3/**
4 * Device Detector - The Universal Device Detection library for parsing User Agents
5 *
6 * @link https://matomo.org
7 *
8 * @license http://www.gnu.org/licenses/lgpl.html LGPL v3 or later
9 */
10
11declare(strict_types=1);
12
13namespace DeviceDetector\Parser\Client;
14
15/**
16 * Class PIM
17 *
18 * Client parser for pim (personal information manager) detection
19 */
20class PIM extends AbstractClientParser
21{
22    /**
23     * @var string
24     */
25    protected $fixtureFile = 'regexes/client/pim.yml';
26
27    /**
28     * @var string
29     */
30    protected $parserName = 'pim';
31}
32