EVOLUTION-MANAGER
Edit File: HasEntityTrait.php
<?php /** * Nexmo Client Library for PHP * * @copyright Copyright (c) 2016 Nexmo, Inc. (http://nexmo.com) * @license https://github.com/Nexmo/nexmo-php/blob/master/LICENSE.txt MIT License */ namespace Nexmo\Entity; trait HasEntityTrait { protected $entity; public function setEntity($entity) { $this->entity = $entity; } public function getEntity() { return $this->entity; } }