updatea
This commit is contained in:
12
app/Repositories/Interface/ArticleInterface.php
Normal file
12
app/Repositories/Interface/ArticleInterface.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Repositories\Interface;
|
||||
|
||||
interface ArticleInterface
|
||||
{
|
||||
public function getAll();
|
||||
public function getArticleById($artilceId);
|
||||
public function delete($artilceId);
|
||||
public function create(array $artilceDetails);
|
||||
public function update($artilceId, array $newDetails);
|
||||
}
|
Reference in New Issue
Block a user