diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2025-07-09 11:11:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-09 11:11:03 +0200 |
commit | bdc76b804c4493e450f0463e9a47b39dbbf6dcb9 (patch) | |
tree | bf9a251a37d8fb1a0243562ef3fa9e684aa9b2bf /lib/public/Notification/IDeferrableApp.php | |
parent | bbc7041c071f9d7d5dd6cda95bd9b770429ba054 (diff) | |
parent | d717dd98507f6f97aff590be887fa9ed44994ed0 (diff) | |
download | nextcloud-server-master.tar.gz nextcloud-server-master.zip |
feat(OCP): Consumable vs. Implementable public API
Diffstat (limited to 'lib/public/Notification/IDeferrableApp.php')
-rw-r--r-- | lib/public/Notification/IDeferrableApp.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/public/Notification/IDeferrableApp.php b/lib/public/Notification/IDeferrableApp.php index 1820ed7ecd6..00c7d691b10 100644 --- a/lib/public/Notification/IDeferrableApp.php +++ b/lib/public/Notification/IDeferrableApp.php @@ -8,11 +8,9 @@ declare(strict_types=1); */ namespace OCP\Notification; -/** - * Interface IDeferrableApp - * - * @since 20.0.0 - */ +use OCP\AppFramework\Attribute\Implementable; + +#[Implementable(since: '20.0.0')] interface IDeferrableApp extends IApp { /** * Start deferring notifications until `flush()` is called |