Implement academy analytics, billing, and web stories updates
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?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,
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user