blob: 40ce0e0cf06389bd96ae34f43d412c4f33da6731 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\AppFramework\Attribute;
use Attribute;
/**
* Attribute to declare that the API stability is limited to "implementing" the
* class, interface, enum, etc.
*
* For events use @see \OCP\AppFramework\Attribute\Dispatchable
* For exceptions use @see \OCP\AppFramework\Attribute\Throwable
*
* @since 32.0.0
*/
#[Attribute(Attribute::TARGET_ALL | Attribute::IS_REPEATABLE)]
#[Consumable(since: '32.0.0')]
#[Implementable(since: '32.0.0')]
class Implementable extends ASince {
}
|