whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
vonage
/
client-core
/
src
/
Client
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/vonage/client-core/src/Client/ClientAwareTrait.php
<?php declare(strict_types=1); namespace Vonage\Client; use RuntimeException; use Vonage\Client; trait ClientAwareTrait { /** * @var Client */ protected $client; public function setClient(Client $client): self { $this->client = $client; return $this; } public function getClient(): ?Client { if (isset($this->client)) { return $this->client; } throw new RuntimeException('Vonage\Client not set'); } }
Copyright ©2021 || Defacer Indonesia