From 83f5b5c58cb4b859847b0bfcf1c753eccc70c4ef Mon Sep 17 00:00:00 2001 From: Joanhey Date: Sun, 10 Sep 2023 11:25:33 +0200 Subject: [PATCH] Fix php doc --- src/session/SessionHandlerInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/session/SessionHandlerInterface.php b/src/session/SessionHandlerInterface.php index c7541a7..a08fa27 100644 --- a/src/session/SessionHandlerInterface.php +++ b/src/session/SessionHandlerInterface.php @@ -65,8 +65,8 @@ public function destroy(string $id): bool; * and *session.gc_maxlifetime* settings. * @link http://php.net/manual/en/sessionhandlerinterface.gc.php * - * @param int $max_lifetime Sessions that have not updated - * for the last **maxLifetime** seconds will be removed. + * @param int $max_lifetime Sessions that have not updated + * for the last **max_lifetime** seconds will be removed. * * @return int|false Returns the number of deleted sessions on success, or **false** on failure. * Note this value is returned internally to PHP for processing.