From 54c8de86c73ce831df7912428b4f9fd849d67aca Mon Sep 17 00:00:00 2001 From: maTh Date: Sun, 7 May 2023 21:35:08 +0200 Subject: docs: language table added (#5375) * docs: language table added * Update 05_Configuration.md * Update 05_Configuration.md * french docs * Unicode quote and a few fixes (Same search&replace aslo applied to a few other files) --------- Co-authored-by: Alexandre Alapetite --- lib/Minz/Session.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Minz/Session.php') diff --git a/lib/Minz/Session.php b/lib/Minz/Session.php index b42df9091..421920e2e 100644 --- a/lib/Minz/Session.php +++ b/lib/Minz/Session.php @@ -61,8 +61,8 @@ class Minz_Session { /** * Allows you to retrieve a session variable * @param string $p the parameter to retrieve - * @param mixed|false $default the default value if the parameter doesn't exist - * @return mixed|false the value of the session variable, false if doesn't exist + * @param mixed|false $default the default value if the parameter doesn’t exist + * @return mixed|false the value of the session variable, false if doesn’t exist */ public static function param(string $p, $default = false) { return $_SESSION[$p] ?? $default; -- cgit v1.2.3