|
|
@@ -7,6 +7,13 @@ use MyCLabs\Enum\Enum;
|
|
|
|
|
|
/**
|
|
|
* Formats de sortie des fichiers exportés
|
|
|
+ *
|
|
|
+ * @method static PDF()
|
|
|
+ * @method static CSV()
|
|
|
+ * @method static TXT()
|
|
|
+ * @method static XLSX()
|
|
|
+ * @method static XML()
|
|
|
+ * @method static DOCX()
|
|
|
*/
|
|
|
class ExportFormatEnum extends Enum
|
|
|
{
|
|
|
@@ -15,4 +22,5 @@ class ExportFormatEnum extends Enum
|
|
|
private const TXT = 'txt';
|
|
|
private const XLSX = 'xlsx';
|
|
|
private const XML = 'xml';
|
|
|
+ private const DOCX = 'docx';
|
|
|
}
|