diff options
-rw-r--r-- | lib/public/notification/iaction.php | 4 | ||||
-rw-r--r-- | lib/public/notification/iapp.php | 4 | ||||
-rw-r--r-- | lib/public/notification/imanager.php | 4 | ||||
-rw-r--r-- | lib/public/notification/inotification.php | 4 | ||||
-rw-r--r-- | lib/public/notification/inotifier.php | 4 |
5 files changed, 20 insertions, 0 deletions
diff --git a/lib/public/notification/iaction.php b/lib/public/notification/iaction.php index f0dfb024961..334f6cc44a7 100644 --- a/lib/public/notification/iaction.php +++ b/lib/public/notification/iaction.php @@ -26,6 +26,10 @@ namespace OCP\Notification; * * @package OCP\Notification * @since 8.2.0 + * + * DEVELOPER NOTE: + * The notification api is experimental only in 8.2.0! Do not start using it, + * if you can not prepare an update for the next version afterwards. */ interface IAction { /** diff --git a/lib/public/notification/iapp.php b/lib/public/notification/iapp.php index b154efab759..b7bf41ce7f5 100644 --- a/lib/public/notification/iapp.php +++ b/lib/public/notification/iapp.php @@ -26,6 +26,10 @@ namespace OCP\Notification; * * @package OCP\Notification * @since 8.2.0 + * + * DEVELOPER NOTE: + * The notification api is experimental only in 8.2.0! Do not start using it, + * if you can not prepare an update for the next version afterwards. */ interface IApp { /** diff --git a/lib/public/notification/imanager.php b/lib/public/notification/imanager.php index e68f19e71fd..ca1cc968b12 100644 --- a/lib/public/notification/imanager.php +++ b/lib/public/notification/imanager.php @@ -26,6 +26,10 @@ namespace OCP\Notification; * * @package OCP\Notification * @since 8.2.0 + * + * DEVELOPER NOTE: + * The notification api is experimental only in 8.2.0! Do not start using it, + * if you can not prepare an update for the next version afterwards. */ interface IManager extends IApp, INotifier { /** diff --git a/lib/public/notification/inotification.php b/lib/public/notification/inotification.php index 48204f733c1..51d4a804647 100644 --- a/lib/public/notification/inotification.php +++ b/lib/public/notification/inotification.php @@ -26,6 +26,10 @@ namespace OCP\Notification; * * @package OCP\Notification * @since 8.2.0 + * + * DEVELOPER NOTE: + * The notification api is experimental only in 8.2.0! Do not start using it, + * if you can not prepare an update for the next version afterwards. */ interface INotification { /** diff --git a/lib/public/notification/inotifier.php b/lib/public/notification/inotifier.php index 32628768ebc..be6b3f25533 100644 --- a/lib/public/notification/inotifier.php +++ b/lib/public/notification/inotifier.php @@ -26,6 +26,10 @@ namespace OCP\Notification; * * @package OCP\Notification * @since 8.2.0 + * + * DEVELOPER NOTE: + * The notification api is experimental only in 8.2.0! Do not start using it, + * if you can not prepare an update for the next version afterwards. */ interface INotifier { /** |