0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-07 09:59:46 +00:00
nextcloud_server/core/Command/User/ClearGeneratedAvatarCacheCommand.php
Daniel Kesselberg af6de04e9e
style: update codestyle for coding-standard 1.2.3
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2024-08-25 19:34:58 +02:00

35 lines
911 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OC\Core\Command\User;
use OC\Avatar\AvatarManager;
use OC\Core\Command\Base;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class ClearGeneratedAvatarCacheCommand extends Base {
public function __construct(
protected AvatarManager $avatarManager,
) {
parent::__construct();
}
protected function configure(): void {
$this
->setDescription('clear avatar cache')
->setName('user:clear-avatar-cache');
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$output->writeln('Clearing avatar cache has started');
$this->avatarManager->clearCachedAvatars();
$output->writeln('Cleared avatar cache successfully');
return 0;
}
}