mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 11:03:17 +00:00
14 lines
247 B
PHP
14 lines
247 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Core\Thumbnail;
|
|
|
|
use Symfony\Component\HttpFoundation\File\File;
|
|
|
|
interface ThumbnailedElement
|
|
{
|
|
|
|
public function getRootIdentifier();
|
|
|
|
public function updateThumbnail($thumbnailType, File $file = null);
|
|
}
|