Implement academy analytics, billing, and web stories updates

This commit is contained in:
2026-05-26 07:27:29 +02:00
parent 456c3d6bb0
commit 0b33a1b074
177 changed files with 27360 additions and 2685 deletions

View File

@@ -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,
];
}
}