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