Add type hints for remaining classes

This commit is contained in:
Alex Cabal 2024-01-08 14:11:53 -06:00
parent d7718218ad
commit 783c09864f
35 changed files with 212 additions and 210 deletions

View file

@ -7,8 +7,8 @@ use function Safe\getimagesize;
use function Safe\unlink;
class Image{
public $Path;
public $MimeType;
public string $Path;
public ?ImageMimeType $MimeType;
public function __construct(string $path){
$this->Path = $path;