From 47cb76d2de73c982a72a91ed0125be16711d6155 Mon Sep 17 00:00:00 2001 From: Alexis Lefebvre Date: Tue, 12 Jul 2022 20:15:41 +0200 Subject: [PATCH] [Filesystem] filesystem > readlink: remove function declaration --- components/filesystem.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/filesystem.rst b/components/filesystem.rst index 46c88d73d7d..a56ed09da0b 100644 --- a/components/filesystem.rst +++ b/components/filesystem.rst @@ -214,9 +214,7 @@ systems (unlike PHP's :phpfunction:`readlink` function):: Its behavior is the following:: - public function readlink($path, $canonicalize = false) - -* When ``$canonicalize`` is ``false``: +* When ``$canonicalize`` is ``false`` (the default value): * if ``$path`` does not exist or is not a link, it returns ``null``. * if ``$path`` is a link, it returns the next direct target of the link without considering the existence of the target.