26 lines
538 B
PHP
26 lines
538 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\AcademyAnalytics;
|
|
|
|
final class AcademyAnalyticsProgressStatus
|
|
{
|
|
public const NOT_STARTED = 'not_started';
|
|
public const STARTED = 'started';
|
|
public const IN_PROGRESS = 'in_progress';
|
|
public const COMPLETED = 'completed';
|
|
|
|
/**
|
|
* @return list<string>
|
|
*/
|
|
public static function values(): array
|
|
{
|
|
return [
|
|
self::NOT_STARTED,
|
|
self::STARTED,
|
|
self::IN_PROGRESS,
|
|
self::COMPLETED,
|
|
];
|
|
}
|
|
} |