18 lines
278 B
PHP
18 lines
278 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Api\Access\Post;
|
|
|
|
use App\Models\Post;
|
|
|
|
interface PostInterface
|
|
{
|
|
public function getAllPosts($data);
|
|
|
|
public function storePost($data);
|
|
|
|
public function updatePost($data , object $post);
|
|
|
|
public function getSantPost($data);
|
|
|
|
}
|