fipamo/app/Interfaces/PageRepositoryInterface.php

19 lines
301 B
PHP
Raw Normal View History

<?php
namespace App\Interfaces;
interface PageRepositoryInterface
{
public function getAll();
public function getByID($uuid);
public function delete($uuid);
public function create($page);
public function update($page);
public function getGroup($num, $limit, $filter);
}