Kaynağa Gözat

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

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/44886/head
Joas Schilling 1 ay önce
ebeveyn
işleme
17744f8590
No account linked to committer's email address

+ 0
- 4
lib/private/Activity/Manager.php Dosyayı Görüntüle

@@ -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 Dosyayı Görüntüle

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

Loading…
İptal
Kaydet