Files
kimai2/src/ConsoleApplication.php
Kevin Papst 26c2d5aa81 prepare release 1.12 (#2183)
* updated dependencies (#2125)
* display application name and version in console (#2150)
2020-12-10 16:25:14 +01:00

26 lines
479 B
PHP

<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App;
use Symfony\Bundle\FrameworkBundle\Console\Application;
class ConsoleApplication extends Application
{
public function getName()
{
return Constants::SOFTWARE;
}
public function getVersion()
{
return Constants::VERSION;
}
}