Ver código fonte

fix(activity): Remove unneeded exception (types are enforced)

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/44886/head
Joas Schilling 1 mês atrás
pai
commit
17744f8590
Nenhuma conta vinculada ao e-mail do autor do commit

+ 0
- 4
lib/private/Activity/Manager.php Ver arquivo

@@ -334,12 +334,8 @@ class Manager implements IManager {
* Set the user we need to use
*
* @param string|null $currentUserId
* @throws \UnexpectedValueException If the user is invalid
*/
public function setCurrentUserId(?string $currentUserId = null): void {
if (!is_string($currentUserId) && $currentUserId !== null) {
throw new \UnexpectedValueException('The given current user is invalid');
}
$this->currentUserId = $currentUserId;
}


+ 0
- 1
lib/public/Activity/IManager.php Ver arquivo

@@ -165,7 +165,6 @@ interface IManager {
* Set the user we need to use
*
* @param string|null $currentUserId
* @throws \UnexpectedValueException If the user is invalid
* @since 9.0.1
*/
public function setCurrentUserId(?string $currentUserId = null): void;

Carregando…
Cancelar
Salvar