Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
vonage
/
client-core
/
src
/
Conversion
Location:
/home/zoteqbgb/public_html/vendor/vonage/client-core/src/Conversion
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: ClientFactory.php
<?php /** * Vonage Client Library for PHP * * @copyright Copyright (c) 2016-2022 Vonage, Inc. (http://vonage.com) * @license https://github.com/Vonage/vonage-php-sdk-core/blob/master/LICENSE.txt Apache License 2.0 */ declare(strict_types=1); namespace Vonage\Conversion; use Psr\Container\ContainerInterface; use Vonage\Client\APIResource; use Vonage\Client\Credentials\Handler\BasicHandler; /** * @todo Finish this Namespace */ class ClientFactory { public function __invoke(ContainerInterface $container): Client { /** @var APIResource $api */ $api = $container->make(APIResource::class); $api->setBaseUri('/conversions/'); $api->setAuthHandler(new BasicHandler()); return new Client($api); } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
Client.php
3,544 bytes
0644
2023-10-02 14:26
âï¸
ðï¸
Rename
ClientFactory.php
763 bytes
0644
2023-10-02 14:26
âï¸
ðï¸
Rename
Chang
Apply