12345678910111213141516171819 |
- <?php
- namespace OwnerVoterBundle\Entity\Traits;
- interface OwnerTraitInterface
- {
- /**
- * @return string Retorna el nombre del propietario.
- */
- public function getOwner();
- /**
- * @param string $owner Contiene el nombre del propietario.
- *
- * @return $this Retorna el objeto.
- */
- public function setOwner($owner = null);
- }
|