Upload beautify
This commit is contained in:
16
app/Services/Uploads/UploadSessionStatus.php
Normal file
16
app/Services/Uploads/UploadSessionStatus.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Services\Uploads;
|
||||
|
||||
final class UploadSessionStatus
|
||||
{
|
||||
public const INIT = 'init';
|
||||
public const TMP = 'tmp';
|
||||
public const VALIDATED = 'validated';
|
||||
public const SCANNED = 'scanned';
|
||||
public const PROCESSED = 'processed';
|
||||
public const QUARANTINED = 'quarantined';
|
||||
public const CANCELLED = 'cancelled';
|
||||
}
|
||||
Reference in New Issue
Block a user