mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
19 lines
331 B
PHP
19 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);
|
|
}
|
|
}
|