update
This commit is contained in:
9
app/Repositories/CommentsInterface.php
Normal file
9
app/Repositories/CommentsInterface.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Repositories;
|
||||
|
||||
interface CommentsInterface{
|
||||
public function create(array $Details);
|
||||
public function update($commentId, array $newDetails);
|
||||
public function delete($commentId);
|
||||
}
|
Reference in New Issue
Block a user