master_template/app/Repositories/VideosInterface.php

12 lines
284 B
PHP
Raw Normal View History

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