getUrls() public method

public getUrls ( )
Exemplo n.º 1
0
 /**
  * sets Entity's Main-Url.
  *
  * @param Contact|AccountInterface $entity
  */
 public function setMainUrl($entity)
 {
     // set main to first entry or to null
     if ($entity->getUrls()->isEmpty()) {
         $entity->setMainUrl(null);
     } else {
         $entity->setMainUrl($entity->getUrls()->first()->getUrl());
     }
 }