Bläddra i källkod

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

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/44886/head
Joas Schilling 1 månad sedan
förälder
incheckning
17744f8590
Inget konto är kopplat till bidragsgivarens mejladress
2 ändrade filer med 0 tillägg och 5 borttagningar
  1. 0
    4
      lib/private/Activity/Manager.php
  2. 0
    1
      lib/public/Activity/IManager.php

+ 0
- 4
lib/private/Activity/Manager.php Visa fil

@@ -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 Visa fil

@@ -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;

Laddar…
Avbryt
Spara