Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/Flow
diff options
context:
space:
mode:
authorVitor Mattos <vitor@php.rio>2021-10-05 20:31:59 +0300
committerVitor Mattos <vitor@php.rio>2021-10-07 16:26:56 +0300
commita2e57ab980a419d0f40cf4540b5387d40e65f51a (patch)
tree74be5f60e0ca09a5c395db8b64eb414a8f964a5a /lib/Flow
parent251d68513b7a7d932592edb314581ad2a443de63 (diff)
Changes after run --alter
psalm --alter --issues=MissingClosureReturnType,MismatchingDocblockReturnType,MissingReturnType,InvalidReturnType,MissingParamType Signed-off-by: Vitor Mattos <vitor@php.rio>
Diffstat (limited to 'lib/Flow')
-rw-r--r--lib/Flow/Operation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Flow/Operation.php b/lib/Flow/Operation.php
index 3e536b493..1ca641f9c 100644
--- a/lib/Flow/Operation.php
+++ b/lib/Flow/Operation.php
@@ -143,7 +143,7 @@ class Operation implements IOperation {
}
}
- protected function prepareText(IEntity $entity, string $eventName) {
+ protected function prepareText(IEntity $entity, string $eventName): string {
$message = $eventName;
if ($entity instanceof IDisplayText) {
$message = trim($entity->getDisplayText(3));