Skip to content

Commit

Permalink
#62: Fix --version output
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Rombauts committed Dec 13, 2017
1 parent 684a81f commit 46e2049
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Joomlatools/Console/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ class Application extends \Symfony\Component\Console\Application
*/
protected $_plugins;

/**
* @inheritdoc
*/
public function __construct($name = 'UNKNOWN', $version = 'UNKNOWN')
{
parent::__construct(self::NAME, self::VERSION);
}

/**
* Runs the current application.
*
Expand Down

0 comments on commit 46e2049

Please sign in to comment.