From 74be6f5984cfa81afe0ef7a3a5803fd68151e76f Mon Sep 17 00:00:00 2001 From: PedroTroller Date: Mon, 30 Oct 2023 15:16:46 +0100 Subject: [PATCH] docs: add explanation for bitwire value in StreamWrapper --- src/Gaufrette/StreamWrapper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gaufrette/StreamWrapper.php b/src/Gaufrette/StreamWrapper.php index 94e2cf28..2e6759bb 100644 --- a/src/Gaufrette/StreamWrapper.php +++ b/src/Gaufrette/StreamWrapper.php @@ -82,7 +82,7 @@ protected static function streamWrapperRegister(string $scheme, string $classNam } /** - * @param STREAM_USE_PATH|STREAM_REPORT_ERRORS|9 $options + * @param STREAM_USE_PATH|STREAM_REPORT_ERRORS|9 $options "9" is the result of a bitwize operation between STREAM_USE_PATH and STREAM_REPORT_ERRORS (STREAM_USE_PATH|STREAM_REPORT_ERRORS). */ public function stream_open(string $path, string $mode, int $options, ?string &$opened_path = null): bool {