9 lines
95 B
PHP
9 lines
95 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
interface HasThumbnail
|
|
{
|
|
public function getThumbnail() : string;
|
|
}
|