Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Created December 4, 2020 06:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurozumi/8bfbb07837bdd1a15c6db60e86093e62 to your computer and use it in GitHub Desktop.
Save kurozumi/8bfbb07837bdd1a15c6db60e86093e62 to your computer and use it in GitHub Desktop.
Httpクライアントを生成するFactory
<?php
namespace Customize\Factory;
use GuzzleHttp\Client;
class HttpClientFactory
{
public static function create($baseUri)
{
return new Client(['base_uri' => $baseUri, 'timeout' => 10]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment