mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-17 21:12:16 +01:00
22 lines
487 B
PHP
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();
|
|
}
|
|
}
|