Files
Global-Jain/app/Repositories/Api/Access/Post/PostInterface.php
2025-11-05 10:37:10 +05:30

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);
}