diff options
Diffstat (limited to 'lib/public/TextToImage/Events/TaskSuccessfulEvent.php')
-rw-r--r-- | lib/public/TextToImage/Events/TaskSuccessfulEvent.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/public/TextToImage/Events/TaskSuccessfulEvent.php b/lib/public/TextToImage/Events/TaskSuccessfulEvent.php new file mode 100644 index 00000000000..ae679437457 --- /dev/null +++ b/lib/public/TextToImage/Events/TaskSuccessfulEvent.php @@ -0,0 +1,17 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +namespace OCP\TextToImage\Events; + +/** + * @since 28.0.0 + * @deprecated 30.0.0 + */ +class TaskSuccessfulEvent extends AbstractTextToImageEvent { +} |