This commit is contained in:
Masroor Ehsan 2025-01-07 17:37:21 +06:00
parent a83c89c524
commit ebda878e1f

View File

@ -0,0 +1,10 @@
<?php
namespace App\Domain\Report;
enum ReportFormat: string
{
case Html = 'html';
case Word = 'word';
case Pdf = 'pdf';
}