Merge branch 'feature/php84-explicit-nullable-params-2' into 'master'

Switch 2 more implicitly nullable params to explicitly nullable.

See merge request tt-rss/tt-rss!27
This commit is contained in:
Andrew Dolgov 2024-04-16 14:29:02 +00:00
commit b1e3d660e4
1 changed files with 2 additions and 2 deletions

View File

@ -193,14 +193,14 @@ class Prefs {
/**
* @return array<int, array<string, bool|int|null|string>>
*/
static function get_all(int $owner_uid, int $profile_id = null) {
static function get_all(int $owner_uid, ?int $profile_id = null) {
return self::get_instance()->_get_all($owner_uid, $profile_id);
}
/**
* @return array<int, array<string, bool|int|null|string>>
*/
private function _get_all(int $owner_uid, int $profile_id = null) {
private function _get_all(int $owner_uid, ?int $profile_id = null) {
$rv = [];
$ref = new ReflectionClass(get_class($this));