diff --git a/app/Enums/FileFormat.php b/app/Enums/FileFormat.php new file mode 100644 index 0000000..cd4acc8 --- /dev/null +++ b/app/Enums/FileFormat.php @@ -0,0 +1,11 @@ +value)->toBe('png'); + expect(FileFormat::Jpg->value)->toBe('jpg'); + expect(FileFormat::Webp->value)->toBe('webp'); + expect(FileFormat::Pdf->value)->toBe('pdf'); +});