OwnerTraitInterface.php 363 B

12345678910111213141516171819
  1. <?php
  2. namespace OwnerVoterBundle\Entity\Traits;
  3. interface OwnerTraitInterface
  4. {
  5. /**
  6. * @return string Retorna el nombre del propietario.
  7. */
  8. public function getOwner();
  9. /**
  10. * @param string $owner Contiene el nombre del propietario.
  11. *
  12. * @return $this Retorna el objeto.
  13. */
  14. public function setOwner($owner = null);
  15. }