refactor: swap the order of sprintf values

This commit is contained in:
Dag 2022-05-11 22:37:59 +02:00
parent d5e9dbf47d
commit fcc3707210
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ function getContents(
throw new HttpException(
sprintf(
'%s %s',
RSSBRIDGE_HTTP_STATUS_CODES[$result['code']] ?? $result['code'],
$result['code']
$result['code'],
RSSBRIDGE_HTTP_STATUS_CODES[$result['code']] ?? $result['code']
)
);
}