TheSeer\phpDox\Version::getInfoString PHP Method

getInfoString() public method

public getInfoString ( )
    public function getInfoString()
    {
        return 'phpDox ' . $this->getVersion() . " - Copyright (C) 2010 - " . date('Y') . " by Arne Blankerts";
    }

Usage Example

Exemplo n.º 1
0
 /**
  * Helper to output version information.
  */
 private function showVersion()
 {
     static $shown = FALSE;
     if ($shown) {
         return;
     }
     $shown = TRUE;
     echo $this->version->getInfoString() . "\n\n";
 }
All Usage Examples Of TheSeer\phpDox\Version::getInfoString