13 lines
318 B
PHP
13 lines
318 B
PHP
<?php
|
|
|
|
namespace App\Service\Client\Interfaces;
|
|
|
|
use Symfony\Contracts\HttpClient\ResponseInterface;
|
|
use App\Dto\RegistrationDto;
|
|
|
|
interface InfoclinicaClientServiceInterface
|
|
{
|
|
public function getSchedule(string $queryString): array;
|
|
// public function registration(RegistrationDto $registrationDto): array;
|
|
}
|