AzuraCast/src/Radio/Enums/AudioProcessingMethods.php

23 lines
355 B
PHP

<?php
declare(strict_types=1);
namespace App\Radio\Enums;
enum AudioProcessingMethods: string
{
case Liquidsoap = 'nrj';
case StereoTool = 'stereo_tool';
case None = 'none';
public function getValue(): string
{
return $this->value;
}
public static function default(): self
{
return self::None;
}
}