getVersion() public method

Returns the version of the application.
public getVersion ( ) : string
return string The application version.
 public function testSetVersionNull()
 {
     $this->config->setVersion('version');
     $this->config->setVersion(null);
     $this->assertNull($this->config->getVersion());
 }