Client
1 year ago
Device
1 year ago
AbstractBotParser.php
1 year ago
AbstractParser.php
1 year ago
Bot.php
1 year ago
OperatingSystem.php
1 year ago
VendorFragment.php
1 year ago
AbstractBotParser.php
27 lines
| 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 | |
| 11 | declare(strict_types=1); |
| 12 | |
| 13 | namespace DeviceDetector\Parser; |
| 14 | |
| 15 | /** |
| 16 | * Class AbstractBotParser |
| 17 | * |
| 18 | * Abstract class for all bot parsers |
| 19 | */ |
| 20 | abstract class AbstractBotParser extends AbstractParser |
| 21 | { |
| 22 | /** |
| 23 | * Enables information discarding |
| 24 | */ |
| 25 | abstract public function discardDetails(): void; |
| 26 | } |
| 27 |