Rector rule 'NullCoalescingOperatorRector'.

https://getrector.com/rule-detail/null-coalescing-operator-rector
This commit is contained in:
supahgreg 2025-10-18 01:30:04 +00:00
parent 5c4f68fad2
commit c756a96b78
No known key found for this signature in database

View File

@ -251,7 +251,7 @@ class Feeds extends Handler_Protected {
array_push($topmost_article_ids, $id);
}
$line["feed_title"] = $line["feed_title"] ?? "";
$line["feed_title"] ??= "";
$button_doc = new DOMDocument();