From 6f1087981c11426d6c534083c90da2fdf13961af Mon Sep 17 00:00:00 2001 From: DombleGames <142721022+DombleGames@users.noreply.github.com> Date: Thu, 30 Jan 2025 22:51:47 +0100 Subject: [PATCH] Fix array_fill example (#8138) Fix: Use correct parameter name "count" instead of "num" in array_fill() Updated the array_fill() function to use "count" as the second parameter, aligning with the official PHP documentation. --- .../php/content/named-arguments@RkNjYva8o_jXp9suz5YdG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/data/roadmaps/php/content/named-arguments@RkNjYva8o_jXp9suz5YdG.md b/src/data/roadmaps/php/content/named-arguments@RkNjYva8o_jXp9suz5YdG.md index d82c6623ad60..f1f04e10dd5d 100644 --- a/src/data/roadmaps/php/content/named-arguments@RkNjYva8o_jXp9suz5YdG.md +++ b/src/data/roadmaps/php/content/named-arguments@RkNjYva8o_jXp9suz5YdG.md @@ -4,11 +4,11 @@ Named arguments in PHP, introduced with PHP 8.0, allow you to specify the values ```php