Change the implementation method of creating a client
Because of it's hard to extend Base Client class
Change the implementation method of creating a client
$client = Client::create($config);
to
$client = new Client($config);
Because of it's hard to extend Base Client class
Change the implementation method of creating a client
$client = Client::create($config);
to
$client = new Client($config);