10 lines
164 B
PHP
10 lines
164 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
interface MedicalHistoryRepositoryInterface
|
|
{
|
|
public function get(array $filters);
|
|
public function search(string $term);
|
|
}
|