mirror of
https://github.com/nextcloud/server.git
synced 2026-04-29 18:11:41 -04:00
fix(TextProcessing): fix psalm typing
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
parent
3dcedb7900
commit
be0a0166e8
2 changed files with 2 additions and 2 deletions
|
|
@ -48,7 +48,7 @@ interface IManager {
|
|||
public function getProviders(): array;
|
||||
|
||||
/**
|
||||
* @return class-string<ITaskType>[]
|
||||
* @return string[]
|
||||
* @since 27.1.0
|
||||
*/
|
||||
public function getAvailableTaskTypes(): array;
|
||||
|
|
|
|||
|
|
@ -23,11 +23,11 @@ declare(strict_types=1);
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
|
||||
namespace OCP\TextProcessing;
|
||||
|
||||
/**
|
||||
* @since 28.0.0
|
||||
* @extends IProvider<ITaskType>
|
||||
*/
|
||||
interface IProviderWithId extends IProvider {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue