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/Dao/EntityConverters/IEntityConverter.php
Marcin Kurczewski 632bac8661 Added "use ..." statements
This version ditches backwards compatibility with PHP earlier than 5.6.
2014-10-18 18:48:36 +02:00

10 lines
197 B
PHP

<?php
namespace Szurubooru\Dao\EntityConverters;
use Szurubooru\Entities\Entity;
interface IEntityConverter
{
public function toArray(Entity $entity);
public function toEntity(array $array);
}