whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
vonage
/
client-core
/
src
/
Redact
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/vonage/client-core/src/Redact/ClientFactory.php
<?php declare(strict_types=1); namespace Vonage\Redact; use Psr\Container\ContainerInterface; use Vonage\Client\APIExceptionHandler; 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('/v1/redact/transaction') ->setAuthHandlers(new BasicHandler()) ->setCollectionName(''); // This API has a slightly different format for the error message, so override $exceptionHandler = $api->getExceptionErrorHandler(); if ($exceptionHandler instanceof APIExceptionHandler) { $exceptionHandler->setRfc7807Format("%s - %s. See %s for more information"); } $api->setExceptionErrorHandler($exceptionHandler); return new Client($api); } }
Copyright ©2021 || Defacer Indonesia