Add the HttpInput::File() and HttpInput::Date() method

This commit is contained in:
Alex Cabal 2024-05-24 20:48:28 -05:00
parent f28378de37
commit 98f45ea4e0
4 changed files with 46 additions and 28 deletions

View file

@ -0,0 +1,8 @@
<?php
namespace Exceptions;
class InvalidFileUploadException extends AppException{
/** @var string $message */
protected $message = 'Uploaded file is invalid.';
}