Files
Kanboard-Prod/app/Console/VersionCommand.php
Joe Nahmias bd7f3d219d bump symfony to 5.4.21
adapt to the new EventDispatcher API
  - Symfony\Component\EventDispatcher => Symfony\Contracts\EventDispatcher
  - dispatch() arguments swap
  - execute() must return int
2023-07-01 20:41:08 -07:00

30 lines
596 B
PHP

<?php
namespace Kanboard\Console;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Class VersionCommand
*
* @package Kanboard\Console
* @author Frederic Guillot
*/
class VersionCommand extends BaseCommand
{
protected function configure()
{
$this
->setName('version')
->setDescription('Display Kanboard version')
;
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$output->writeln(APP_VERSION);
return 0;
}
}