13 lines
300 B
PHP
13 lines
300 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Repositories\Interface;
|
||
|
|
||
|
interface AuthorsInterface
|
||
|
{
|
||
|
public function getAll();
|
||
|
public function getAuthorsById($authorId);
|
||
|
public function delete($authorId);
|
||
|
public function create(array $authorDetail);
|
||
|
public function update($authorId, array $newDetails);
|
||
|
}
|