mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
14 lines
226 B
PHP
14 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';
|
|
}
|