movie-night-nuevo/app/Models/Interfaces/MovieDbInterface.php

9 lines
131 B
PHP
Raw Permalink Normal View History

2025-12-12 23:07:04 -06:00
<?php
namespace App\Models\Interfaces;
interface MovieDbInterface
{
public function search(string $query, array $options);
}