Exemplo n.º 1
0
 /**
  * Find the relevant items out of the notes tree
  *
  * @return string
  */
 public function parseSignature()
 {
     /**
      * Go over the notes and find the signature of the contact
      */
     foreach ($this->contact->getNote() as $note) {
         if ($note->getSource() === Note::SOURCE_SIGNATURE) {
             return $note->getNote();
         }
     }
 }