This commit is contained in:
2024-05-23 16:54:06 +02:00
parent fc2b66528b
commit 3f26df05b5
26 changed files with 1193 additions and 0 deletions

8
app/HasThumbnail.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
namespace App;
interface HasThumbnail
{
public function getThumbnail() : string;
}