| 1 | <?php |
||
| 21 | class SeoImage implements SeoImageInterface |
||
| 22 | { |
||
| 23 | use TimestampableTrait; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | protected $id; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | protected $key; |
||
| 34 | |||
| 35 | public function getId(): string |
||
| 39 | |||
| 40 | public function getKey(): string |
||
| 44 | |||
| 45 | public function setKey(string $key): void |
||
| 49 | } |
||
| 50 |