first commit
This commit is contained in:
17
laravel/app/Contracts/WbClientInterface.php
Normal file
17
laravel/app/Contracts/WbClientInterface.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user