9 lines
209 B
PHP
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);
|
||
|
}
|