20 lines
399 B
PHP
20 lines
399 B
PHP
<?php
|
|
|
|
namespace Modules\IndustrialEngineering\Domain\Enums;
|
|
|
|
final class BuildStatus
|
|
{
|
|
public const IN_PROGRESS = 'in_progress';
|
|
|
|
public const COMPLETED = 'completed';
|
|
|
|
public const SHIPPED = 'shipped';
|
|
|
|
public const INSTALLED = 'installed';
|
|
|
|
public static function all(): array
|
|
{
|
|
return [self::IN_PROGRESS, self::COMPLETED, self::SHIPPED, self::INSTALLED];
|
|
}
|
|
}
|