master_template/app/Repositories/VideosInterface.php

12 lines
284 B
PHP
Raw Normal View History

2024-06-18 05:46:51 +00:00
<?php
2024-06-23 11:17:56 +00:00
namespace App\Repositories;
2024-06-18 05:46:51 +00:00
interface VideosInterface
{
public function getAll();
public function getVideoById($videoId);
public function delete($videoId);
public function create(array $videoDetails);
public function update($videoId, array $newDetails);
}