[ENTITY][Actor] Add missing 'break' statements in switches in getUr{i,l}

This commit is contained in:
Hugo Sales 2021-12-21 12:46:42 +00:00
parent 25900d38bd
commit 6a8144003f
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 2 additions and 2 deletions

View File

@ -505,7 +505,7 @@ class Actor extends Entity
break;
case self::GROUP:
$uri = Router::url('group_actor_view_id', ['id' => $this->getId()], $type);
// no break
break;
default:
throw new BugFoundException('Actor type added but `Actor::getUri` was not updated');
}
@ -531,7 +531,7 @@ class Actor extends Entity
break;
case self::GROUP:
$url = Router::url('group_actor_view_nickname', ['nickname' => $this->getNickname()], $type);
// no break
break;
default:
throw new BugFoundException('Actor type added but `Actor::getUrl` was not updated');
}