HttpClientFactoryInterface.php 216 B

123456789101112
  1. <?php
  2. declare(strict_types=1);
  3. namespace Yansongda\Artful\Contract;
  4. use Psr\Http\Client\ClientInterface;
  5. interface HttpClientFactoryInterface
  6. {
  7. public function create(array $options = []): ClientInterface;
  8. }