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