Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
35 | public function run(array $params = []) |
||
36 | { |
||
37 | /** @var Connection $connection */ |
||
38 | $connection = $this->doctrine->getConnection(); |
||
39 | |||
40 | $deleted = $connection->exec('DELETE FROM task_queue |
||
41 | WHERE resolution = "success" |
||
42 | AND created <= DATE_SUB(NOW(), INTERVAL 1 MONTH)'); |
||
43 | |||
44 | $deleted += $connection->exec('DELETE FROM task_queue |
||
45 | WHERE resolution != "success" |
||
46 | AND created <= DATE_SUB(NOW(), INTERVAL 3 MONTH)'); |
||
47 | |||
48 | return sprintf('%d deleted', $deleted); |
||
49 | } |
||
50 | |||
62 |