master_template/app/Repositories/CommentsInterface.php
2024-06-23 17:02:56 +05:45

9 lines
209 B
PHP

<?php
namespace App\Repositories;
interface CommentsInterface{
public function create(array $Details);
public function update($commentId, array $newDetails);
public function delete($commentId);
}