summaryrefslogtreecommitdiff
path: root/app/Console/WorkerCommand.php
blob: e332624b71352df9a4ef0b9f49d42b1abf82b19a (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 WorkerCommand
 *
 * @package Kanboard\Console
 * @author  Frederic Guillot
 */
class WorkerCommand extends BaseCommand
{
    protected function configure()
    {
        $this
            ->setName('worker')
            ->setDescription('Execute queue worker')
        ;
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $this->queueManager->listen();
    }
}