getText() public méthode

Get plain text
public getText ( ) : string
Résultat string
 /**
  * Get text
  * @return string
  */
 protected function getText()
 {
     return !is_null($this->m_content) ? $this->m_content->getText() : null;
 }
 /**
  * Get text
  * @return string
  */
 protected function getText()
 {
     $poi_text = !is_null($this->m_content) ? $this->m_content->getText() : null;
     return $poi_text;
 }