blob: 678cc2eea04bc349843d95745b3148c27fdbcd42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?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)
{
$output->writeln(APP_VERSION);
}
}
|