10 lines
121 B
PHP
10 lines
121 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum TimelineStatus: string
|
|
{
|
|
case Active = 'active';
|
|
case Archived = 'archived';
|
|
}
|