10 lines
260 B
PHP
10 lines
260 B
PHP
<?php
|
|
namespace Szurubooru\Services;
|
|
use Szurubooru\Entities\Entity;
|
|
|
|
interface ISnapshotProvider
|
|
{
|
|
public function getCreationSnapshot(Entity $entity);
|
|
public function getChangeSnapshot(Entity $entity);
|
|
public function getDeleteSnapshot(Entity $entity);
|
|
}
|