Laravel\Lumen\Application::version PHP Method

version() public method

Get the version number of the application.
public version ( ) : string
return string
    public function version()
    {
        return 'Lumen (5.3.0-dev) (Laravel Components 5.3.*)';
    }

Usage Example

 /**
  * Get the version number of the application.
  *
  * @return string 
  * @static 
  */
 public static function version()
 {
     return \Laravel\Lumen\Application::version();
 }