mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
18 lines
331 B
PHP
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);
|
|
}
|
|
}
|