This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/src/Services/ISnapshotProvider.php
2014-11-09 17:38:58 +01:00

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);
}