﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc	focuses
64488	Code Modernization: replace if isset() return with null coalescing	Soean	westonruter	"In #63430 isset() ternary were replaced with null coalescing.

We also should replace if isset() return with null coalescing.

{{{#!php
<?php
-        if (isset($this->items[$key])) {
-            return $this->items[$key];
-        }
-
-        return 'fallback value';
+        return $this->items[$key] ?? 'fallback value';
}}}

This is part of #58874."	enhancement	closed	normal	7.0	General		normal	fixed	has-patch commit		coding-standards
