From b15bdd5f78762b620f9841bb28f275ffd7546589 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 2 Feb 2025 09:40:01 +0600 Subject: [PATCH] chore: update roadmap content json (#8154) Co-authored-by: kamranahmedse <4921183+kamranahmedse@users.noreply.github.com> --- public/roadmap-content/php.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/public/roadmap-content/php.json b/public/roadmap-content/php.json index 45352df08..583c18466 100644 --- a/public/roadmap-content/php.json +++ b/public/roadmap-content/php.json @@ -319,8 +319,13 @@ "description": "The Null Safe Operator is a handy feature in PHP which deals with an issue that often pops up when working with objects: trying to access properties or methods on an object that might be null. Instead of a fatal error, the PHP Null Safe Operator (indicated by ?->) allows null values to be returned safely, making your code more robust. Here's a quick example, consider $session?->user?->name. If $session or user is null, PHP will stop further execution and simply return null. This makes PHP more resilient when processing unpredictable data.\n\nVisit the following resources to learn more:", "links": [ { - "title": "Null Safe Operator", - "url": "https://www.php.net/manual/en/language.oop5.nullsafe.php", + "title": "The Basics - Manual", + "url": "https://www.php.net/manual/en/language.oop5.basic.php", + "type": "article" + }, + { + "title": "PHP RFC: Nullsafe operator", + "url": "https://wiki.php.net/rfc/nullsafe_operator", "type": "article" } ]