setAnnotation() public method

public setAnnotation ( Annotation $annotation )
$annotation Wallabag\AnnotationBundle\Entity\Annotation
Ejemplo n.º 1
0
 /**
  * Set entry.
  *
  * @param Entry $entry
  *
  * @return Annotation
  */
 public function setEntry($entry)
 {
     $this->entry = $entry;
     $entry->setAnnotation($this);
     return $this;
 }