| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace ModulesGarden\Servers\KerioEmail\App\Libs\Kerio\Components\Api\Soap\Traits;
- use ModulesGarden\Servers\KerioEmail\App\Libs\Kerio\Components\Api\Soap\Client;
- use ModulesGarden\Servers\KerioEmail\App\Libs\Kerio\Components\Api\Soap\Interfaces\ApiService;
- /**
- * Class ApiClientHandler
- * User: Nessandro
- * Date: 2019-10-01
- * Time: 07:52
- */
- trait ApiClientHandler
- {
- /**
- * @var Client
- */
- protected $api;
- /**
- * @param $api
- * @return $this
- */
- public function setApi(Client $api)
- {
- $this->api = $api;
- return $this;
- }
- /**
- * @return Client
- */
- public function getApi()
- {
- return $this->api;
- }
- }
|