Quellcode durchsuchen

Fix psalm parameter type

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v25.0.0beta7
Joas Schilling vor 1 Jahr
Ursprung
Commit
df57b51c8b
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      lib/public/AppFramework/Services/IInitialState.php

+ 1
- 1
lib/public/AppFramework/Services/IInitialState.php Datei anzeigen

@@ -57,7 +57,7 @@ interface IInitialState {
*
* @param string $key
* @param Closure $closure returns a primitive or an object that implements JsonSerializable
* @psalm-param Closure():int|Closure():float|Closure():string|Closure():\JsonSerializable $closure
* @psalm-param Closure():bool|Closure():int|Closure():float|Closure():string|Closure():\JsonSerializable $closure
*/
public function provideLazyInitialState(string $key, Closure $closure): void;
}

Laden…
Abbrechen
Speichern