13 lines
194 B
PHP
13 lines
194 B
PHP
|
<?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;
|
||
|
}
|
||
|
}
|