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;
14
15/**
16 * Class AbstractBotParser
17 *
18 * Abstract class for all bot parsers
19 */
20abstract class AbstractBotParser extends AbstractParser
21{
22    /**
23     * Enables information discarding
24     */
25    abstract public function discardDetails(): void;
26}
27