1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2024-10-17 08:42:48 +02:00
Nextcloud-News/lib/Command/Updater/BeforeUpdate.php
Sean Molenaar 67b6c4e1b0 Fix psalm issues
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
2021-01-12 13:29:08 +01:00

52 lines
1.2 KiB
PHP

<?php
/**
* Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2016
*/
namespace OCA\News\Command\Updater;
use OCA\News\Service\UpdaterService;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class BeforeUpdate extends Command
{
/**
* @var UpdaterService Updater
*/
private $updaterService;
public function __construct(UpdaterService $updater)
{
parent::__construct();
$this->updaterService = $updater;
}
/**
* @return void
*/
protected function configure()
{
$this->setName('news:updater:before-update')
->setDescription(
'This is used to clean up the database. It ' .
'deletes folders and feeds that are marked for ' .
'deletion'
);
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$this->updaterService->beforeUpdate();
return 0;
}
}