mirror of
https://github.com/nextcloud/server.git
synced 2026-06-29 12:24:50 +02:00
5f80f26799
Signed-off-by: Joas Schilling <coding@schilljs.com>
18 lines
299 B
PHP
18 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 {
|
|
|
|
}
|