nextcloud/lib/public/LanguageModel/Events/TaskSuccessfulEvent.php
Marcel Klehr dd7eafaa48 LLM OCP API: Fix coding style and psalm
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
(cherry picked from commit 72ea76178a)
2023-08-09 10:00:24 +02:00

18 lines
331 B
PHP

<?php
namespace OCP\LanguageModel\Events;
use OCP\LanguageModel\ILanguageModelTask;
/**
* @since 28.0.0
*/
class TaskSuccessfulEvent extends AbstractLanguageModelEvent {
/**
* @param ILanguageModelTask $task
* @since 28.0.0
*/
public function __construct(ILanguageModelTask $task) {
parent::__construct($task);
}
}