correct return value for bzopen(), dba_open(), finfo_open() and shmop_open() functions

This commit is contained in:
Peter Gribanov 2020-06-24 18:13:08 +03:00 committed by Ivan Fedorov
parent 480833767c
commit 8841ebf3e0
4 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@
* and 'w' (write) are supported. Everything else will cause bzopen
* to return <b>FALSE</b>.
* </p>
* @return resource If the open fails, <b>bzopen</b> returns <b>FALSE</b>, otherwise
* @return resource|false If the open fails, <b>bzopen</b> returns <b>FALSE</b>, otherwise
* it returns a pointer to the newly opened file.
*/
function bzopen ($filename, $mode) {}

View File

@ -117,7 +117,7 @@
* can act on behalf of them.
* </p>
* @param mixed $_ [optional]
* @return resource a positive handle on success or <b>FALSE</b> on failure.
* @return resource|false a positive handle on success or <b>FALSE</b> on failure.
*/
function dba_open ($path, $mode, $handler = null, $_ = null) {}
@ -140,7 +140,7 @@ function dba_open ($path, $mode, $handler = null, $_ = null) {}
* can act on behalf of them.
* </p>
* @param mixed $_ [optional]
* @return resource a positive handle on success or <b>FALSE</b> on failure.
* @return resource|false a positive handle on success or <b>FALSE</b> on failure.
*/
function dba_popen ($path, $mode, $handler = null, $_ = null) {}

View File

@ -76,7 +76,7 @@ class finfo {
* A .mime and/or .mgc suffix is added if
* needed.
* </p>
* @return resource a magic database resource on success or <b>FALSE</b> on failure.
* @return resource|false a magic database resource on success or <b>FALSE</b> on failure.
*/
function finfo_open ($options = null, $magic_file = null) {}

View File

@ -22,7 +22,7 @@
* @param int $size <p>
* The size of the shared memory block you wish to create in bytes
* </p>
* @return resource On success <b>shmop_open</b> will return an id that you can
* @return resource|false On success <b>shmop_open</b> will return an id that you can
* use to access the shared memory segment you've created. <b>FALSE</b> is
* returned on failure.
*/