nextcloud/lib/private/AppFramework/Http/Attributes/TwoFactorSetUpDoneRequired.php
Joas Schilling 5f80f26799
chore: Fix SPDX header
Signed-off-by: Joas Schilling <coding@schilljs.com>
2026-03-16 08:38:16 +01:00

17 lines
299 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OC\AppFramework\Http\Attributes;
use Attribute;
#[Attribute(Attribute::TARGET_METHOD)]
class TwoFactorSetUpDoneRequired {
}