mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 15:26:43 +02:00
13 lines
226 B
PHP
13 lines
226 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Plugins\Core;
|
|
|
|
enum PluginStatus: string
|
|
{
|
|
case INVALID = 'invalid';
|
|
case INCOMPATIBLE = 'incompatible';
|
|
case INACTIVE = 'inactive';
|
|
case ACTIVE = 'active';
|
|
}
|