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