/** * returns the version of the extension * * @access public * @author firstname and lastname of author, <*****@*****.**> * @return string */ public function getVersion() { return (string) $this->manifest->getVersion(); }
/** * returns the version of the extension * * @access public * @author firstname and lastname of author, <*****@*****.**> * @return string */ public function getVersion() { $returnValue = (string) ''; $returnValue = $this->manifest->getVersion(); return (string) $returnValue; }