4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-17 22:47:04 +00:00
AzuraCast/src/Entity/Enums/AnalyticsLevel.php

18 lines
401 B
PHP
Raw Normal View History

2022-01-13 10:40:33 +00:00
<?php
declare(strict_types=1);
namespace App\Entity\Enums;
enum AnalyticsLevel: string
{
case All = 'all'; // Log all analytics data across the system.
case NoIp = 'no_ip'; // Suppress any IP-based logging and use aggregate logging only.
case None = 'none'; // No analytics data collected of any sort.
public static function default(): self
{
return self::All;
}
}