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/ICrudDao.php
Marcin Kurczewski b7de8ae0bf Added proof of concept for Dao system
Fixup first commit
2014-10-18 18:48:15 +02:00

15 lines
227 B
PHP

<?php
namespace Szurubooru\Dao;
interface ICrudDao
{
public function getAll();
public function getById($objectId);
public function save(&$object);
public function deleteById($objectId);
public function deleteAll();
}