blob: 18a4d7d738dcd97a84275390dc60549d2d7c2a7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
namespace Kanboard\Console;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class ProjectActivityArchiveCommand extends BaseCommand
{
protected function configure()
{
$this
->setName('projects:archive-activities')
->setDescription('Remove project activities after one year');
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->projectActivityModel->cleanup(strtotime('-1 year'));
}
}
|