mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
13 lines
186 B
PHP
13 lines
186 B
PHP
![]() |
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Modules\Plugins\Core;
|
||
|
|
||
|
enum PluginStatus: string
|
||
|
{
|
||
|
case INVALID = 'invalid';
|
||
|
case INACTIVE = 'inactive';
|
||
|
case ACTIVE = 'active';
|
||
|
}
|