]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix psalm errors
authorMarcel Klehr <mklehr@gmx.net>
Mon, 17 Jul 2023 11:30:20 +0000 (13:30 +0200)
committerMarcel Klehr <mklehr@gmx.net>
Wed, 9 Aug 2023 08:05:23 +0000 (10:05 +0200)
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
(cherry picked from commit d63c122ec0071cc1d0417eaa5eb1a85e41290263)

lib/public/TextProcessing/FreePromptTaskType.php
lib/public/TextProcessing/HeadlineTaskType.php
lib/public/TextProcessing/IProvider.php
lib/public/TextProcessing/SummaryTaskType.php
lib/public/TextProcessing/TopicsTaskType.php

index aa1d6842b54f24f87be3edd1bfcb9c6219fc99d7..dcc27df77c9b805b5fe3d7e0579487c54f6cd578 100644 (file)
@@ -46,6 +46,7 @@ class FreePromptTaskType implements ITaskType {
 
        /**
         * @inheritDoc
+        * @since 27.1.0
         */
        public function getName(): string {
                return $this->l->t('Free prompt');
@@ -53,6 +54,7 @@ class FreePromptTaskType implements ITaskType {
 
        /**
         * @inheritDoc
+        * @since 27.1.0
         */
        public function getDescription(): string {
                return $this->l->t('Runs an arbitrary prompt through the built-in language model.');
index 4ced298fd4dde88552e1635c994db1d143a879ef..ad38848ea87cbcbc59584cd042f5ef3f634d6d03 100644 (file)
@@ -46,6 +46,7 @@ class HeadlineTaskType implements ITaskType {
 
        /**
         * @inheritDoc
+        * @since 27.1.0
         */
        public function getName(): string {
                return $this->l->t('Generate headline');
@@ -53,6 +54,7 @@ class HeadlineTaskType implements ITaskType {
 
        /**
         * @inheritDoc
+        * @since 27.1.0
         */
        public function getDescription(): string {
                return $this->l->t('Generates a possible headline for a text');
index 3eb83aef8c33366c1aa250271fc09404a1e82f9e..6132e60b49371208f3174b7ee4dd03ce6c8f88a8 100644 (file)
@@ -55,6 +55,7 @@ interface IProvider {
         * Returns the task type class string of the task type, that this
         * provider handles
         *
+        * @since 27.1.0
         * @return class-string<T>
         */
        public function getTaskType(): string;
index 7db695c18f7228ade4fc6e4f8e92a263e90b1197..3d80cee47f8a3858f53f0a67276faa30b71d16f5 100644 (file)
@@ -46,6 +46,7 @@ class SummaryTaskType implements ITaskType {
 
        /**
         * @inheritDoc
+        * @since 27.1.0
         */
        public function getName(): string {
                return $this->l->t('Summarize');
@@ -53,6 +54,7 @@ class SummaryTaskType implements ITaskType {
 
        /**
         * @inheritDoc
+        * @since 27.1.0
         */
        public function getDescription(): string {
                return $this->l->t('Summarizes text by reducing its length without losing key information.');
index 8b41b3ee61aea51dabc49c607dc61cb2c5386a2f..6162b9a13e98fdb00478851fce4e8f7e1e6dd293 100644 (file)
@@ -46,6 +46,7 @@ class TopicsTaskType implements ITaskType {
 
        /**
         * @inheritDoc
+        * @since 27.1.0
         */
        public function getName(): string {
                return $this->l->t('Extract topics');
@@ -53,6 +54,7 @@ class TopicsTaskType implements ITaskType {
 
        /**
         * @inheritDoc
+        * @since 27.1.0
         */
        public function getDescription(): string {
                return $this->l->t('Extracts topics from a text and outputs them separated by commas.');