mirror of
https://github.com/nextcloud/server.git
synced 2026-03-22 10:30:49 -04:00
17 lines
299 B
PHP
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 {
|
|
|
|
}
|