Newscoop\Entity\Theme::getVersion PHP Method

getVersion() public method

Provides the version of the theme, this has to be a whell formated version name like '1.3'.
public getVersion ( ) : string
return string The version of the theme.
    public function getVersion()
    {
        return $this->version;
    }

Usage Example

 public function getVersion()
 {
     $this->__load();
     return parent::getVersion();
 }