11 lines
137 B
PHP
11 lines
137 B
PHP
<?php
|
|
|
|
namespace App\Domain\Report;
|
|
|
|
enum ReportFormat: string
|
|
{
|
|
case Html = 'html';
|
|
case Word = 'word';
|
|
case Pdf = 'pdf';
|
|
}
|