photo/app/Media/Unknown.php

13 lines
194 B
PHP
Raw Normal View History

2024-09-16 12:10:19 +00:00
<?php
namespace App\Media;
/**
* This represents a media type that we dont know how to parse
*/
class Unknown extends Base {
public function __get(string $key): mixed
{
return NULL;
}
}