master_template/app/Repositories/CommentsInterface.php

9 lines
209 B
PHP
Raw Normal View History

2024-06-23 11:17:56 +00:00
<?php
namespace App\Repositories;
interface CommentsInterface{
public function create(array $Details);
public function update($commentId, array $newDetails);
public function delete($commentId);
}