tastphp/framework

View on GitHub
src/Framework/Console/Command/Template/EntityDao.txt

Summary

Maintainability
Test Coverage
<?php

namespace TastPHP\Service\Entity\Dao;

interface EntityDao
{
    public function getEntity($id, $fields);

    public function getAllEntity();

    public function createEntity($entity);

    public function updateEntity($id, $entity);

    public function deleteEntity($id);

}