Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
vonage
/
client-core
/
src
/
Users
Location:
/home/zoteqbgb/public_html/vendor/vonage/client-core/src/Users
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: ClientFactory.php
<?php declare(strict_types=1); namespace Vonage\Users; use Psr\Container\ContainerInterface; use Vonage\Client\APIResource; use Vonage\Client\Credentials\Handler\KeypairHandler; use Vonage\Entity\Hydrator\ArrayHydrator; class ClientFactory { public function __invoke(ContainerInterface $container): Client { $api = $container->make(APIResource::class); $api ->setBaseUri('/v1/users') ->setCollectionName('users') ->setAuthHandler(new KeypairHandler()); $hydrator = new ArrayHydrator(); $hydrator->setPrototype(new User()); return new Client($api, $hydrator); } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
Client.php
2,076 bytes
0644
2023-10-02 14:26
âï¸
ðï¸
Rename
ClientFactory.php
657 bytes
0644
2023-10-02 14:26
âï¸
ðï¸
Rename
Filter
-
0755
2023-10-02 14:26
ðï¸
Rename
User.php
3,543 bytes
0644
2023-10-02 14:26
âï¸
ðï¸
Rename
Chang
Apply