libresign/lib/Command/Base.php
Vitor Mattos d83f4370fa
chore: bump dependencies
Signed-off-by: Vitor Mattos <vitor@php.rio>
2024-09-19 10:10:41 -03:00

22 lines
487 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2020-2024 LibreCode coop and contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Libresign\Command;
use OC\Core\Command\Base as CommandBase;
use OCA\Libresign\Service\Install\InstallService;
use Psr\Log\LoggerInterface;
class Base extends CommandBase {
public function __construct(
public InstallService $installService,
protected LoggerInterface $logger,
) {
parent::__construct();
}
}