for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\TwoFactorGateway\Provider;
class Settings {
public function __construct(
public string $name,
public string $id = '',
public bool $allowMarkdown = false,
public string $instructions = '',
* List of fields to be filled by system administrators when configuring the gateway.
*
* @var FieldDefinition[]
public array $fields = [],
) {
}