polls/lib/Attributes/ShareTokenRequired.php

19 строки
287 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Polls\Attributes;
use Attribute;
/**
* Attribute for permission check against Acl
*/
#[Attribute]
class ShareTokenRequired {
}