castopod/modules/Plugins/Core/PluginStatus.php

14 lines
226 B
PHP
Raw Permalink Normal View History

<?php
declare(strict_types=1);
namespace Modules\Plugins\Core;
enum PluginStatus: string
{
case INVALID = 'invalid';
case INCOMPATIBLE = 'incompatible';
case INACTIVE = 'inactive';
case ACTIVE = 'active';
}