More type hinting

This commit is contained in:
Alex Cabal 2024-01-08 20:21:42 -06:00
parent cb79832092
commit 1c3640fab6
6 changed files with 56 additions and 29 deletions

View file

@ -0,0 +1,6 @@
<?
namespace Exceptions;
class InvalidLoginException extends AppException{
protected $message = 'We couldnt validate your login information.';
}

View file

@ -2,5 +2,5 @@
namespace Exceptions;
class InvalidUserException extends AppException{
protected $message = 'We couldnt validate your login information.';
protected $message = 'We couldnt locate that user.';
}