Throw IAE again (should never become visible)
This commit is contained in:
parent
35c78ce14c
commit
d8ff966d21
|
@ -125,10 +125,11 @@ class Post
|
||||||
/**
|
/**
|
||||||
* Fetch the privacy of the post
|
* Fetch the privacy of the post
|
||||||
*
|
*
|
||||||
* @param array $item
|
* @param array $item Item record
|
||||||
* @return string
|
* @return string Item privacy message
|
||||||
|
* @throws InvalidArgumentException If $item['private'] is unknown
|
||||||
*/
|
*/
|
||||||
private function fetchPrivacy(array $item):string
|
private function fetchPrivacy(array $item): string
|
||||||
{
|
{
|
||||||
switch ($item['private']) {
|
switch ($item['private']) {
|
||||||
case Item::PRIVATE:
|
case Item::PRIVATE:
|
||||||
|
@ -142,6 +143,9 @@ class Post
|
||||||
case Item::UNLISTED:
|
case Item::UNLISTED:
|
||||||
$output = DI::l10n()->t('Unlisted Message');
|
$output = DI::l10n()->t('Unlisted Message');
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
throw new InvalidArgumentException('Item privacy ' . $item['privacy'] . ' is unsupported');
|
||||||
}
|
}
|
||||||
|
|
||||||
return $output;
|
return $output;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user