Edit File: HasEntityTrait.php
<?php declare(strict_types=1); namespace Vonage\Entity; trait HasEntityTrait { protected $entity; public function setEntity($entity): void { $this->entity = $entity; } public function getEntity() { return $this->entity; } }
Back to File Manager