movie-night-nuevo/app/Models/Interfaces/MovieDbInterface.php
Edward Tirado Jr. 0c42bef077
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
initial commit
2025-12-12 23:07:04 -06:00

8 lines
131 B
PHP

<?php
namespace App\Models\Interfaces;
interface MovieDbInterface
{
public function search(string $query, array $options);
}