Add type hints to Artwork class members

This commit is contained in:
Alex Cabal 2024-01-08 14:06:25 -06:00
parent 5b6a334dd0
commit 8e37543fa3
5 changed files with 64 additions and 47 deletions

View file

@ -0,0 +1,6 @@
<?
namespace Exceptions;
class MuseumNotFoundException extends AppException{
protected $message = 'We couldnt locate that museum.';
}