18 lines
268 B
PHP
18 lines
268 B
PHP
<?php
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts;
|
|
|
|
use App\DTO\WbRequestDTO;
|
|
use App\Exceptions\WbServiceException;
|
|
|
|
interface WbClientInterface
|
|
{
|
|
/**
|
|
* @throws WbServiceException
|
|
*/
|
|
public function fetch(WbRequestDTO $requestDTO): array;
|
|
}
|