20 lines
397 B
PHP
20 lines
397 B
PHP
<?php
|
|
|
|
namespace Modules\IndustrialEngineering\Domain\Enums;
|
|
|
|
final class SerialStatus
|
|
{
|
|
public const AVAILABLE = 'available';
|
|
|
|
public const ALLOCATED = 'allocated';
|
|
|
|
public const INSTALLED = 'installed';
|
|
|
|
public const SCRAPPED = 'scrapped';
|
|
|
|
public static function all(): array
|
|
{
|
|
return [self::AVAILABLE, self::ALLOCATED, self::INSTALLED, self::SCRAPPED];
|
|
}
|
|
}
|