Remove "since 7" leftovers

This commit is contained in:
Maxim.Kolmakov 2020-02-11 15:48:48 +01:00
parent e3b13456b9
commit 3c6be3dc79
6 changed files with 0 additions and 29 deletions

View File

@ -16,7 +16,6 @@
* this has not been set.
* </p>
* @return string The sum of the two operands, as a string.
* @since 7.0
*/
function bcadd ($left_operand, $right_operand, $scale = 0) {}
@ -36,7 +35,6 @@ function bcadd ($left_operand, $right_operand, $scale = 0) {}
* this has not been set.
* </p>
* @return string The result of the subtraction, as a string.
* @since 7.0
*/
function bcsub ($left_operand, $right_operand, $scale = 0) {}
@ -56,7 +54,6 @@ function bcsub ($left_operand, $right_operand, $scale = 0) {}
* this has not been set.
* </p>
* @return string the result as a string.
* @since 7.0
*/
function bcmul ($left_operand, $right_operand, $scale = 0) {}
@ -77,7 +74,6 @@ function bcmul ($left_operand, $right_operand, $scale = 0) {}
* </p>
* @return string|null the result of the division as a string, or <b>NULL</b> if
* <i>divisor</i> is 0.
* @since 7.0
*/
function bcdiv ($dividend, $divisor, $scale = 0) {}
@ -98,7 +94,6 @@ function bcdiv ($dividend, $divisor, $scale = 0) {}
* </p>
* @return string|null the modulus as a string, or <b>NULL</b> if
* <i>divisor</i> is 0.
* @since 7.0
* @since 7.2 scale param added, dividend/divisor no longer truncated
*/
function bcmod ($dividend, $divisor, $scale = 0) {}
@ -121,7 +116,6 @@ function bcmod ($dividend, $divisor, $scale = 0) {}
* this has not been set.
* </p>
* @return string the result as a string.
* @since 7.0
*/
function bcpow ($base, $exponent, $scale = 0) {}
@ -134,7 +128,6 @@ function bcpow ($base, $exponent, $scale = 0) {}
* @param int $scale [optional]
* @return string the square root as a string, or <b>NULL</b> if
* <i>operand</i> is negative.
* @since 7.0
*/
function bcsqrt ($operand, $scale = null) {}
@ -145,7 +138,6 @@ function bcsqrt ($operand, $scale = null) {}
* The scale factor.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 7.0
*/
function bcscale ($scale) {}
@ -166,7 +158,6 @@ function bcscale ($scale) {}
* @return int 0 if the two operands are equal, 1 if the
* <i>left_operand</i> is larger than the
* <i>right_operand</i>, -1 otherwise.
* @since 7.0
*/
function bccomp ($left_operand, $right_operand, $scale = 0) {}
@ -191,6 +182,5 @@ function bccomp ($left_operand, $right_operand, $scale = 0) {}
* </p>
* @return string|null the result as a string, or <b>NULL</b> if <i>modulus</i>
* is 0 or <i>exponent</i> is negative.
* @since 7.0
*/
function bcpowmod ($base, $exponent, $modulus, $scale = 0) {}

View File

@ -66,7 +66,6 @@ function ldap_parse_exop ($link , $result, &$retdata, &$retoid) {}
* @link https://www.php.net/manual/en/function.ldap-8859-to-t61.php
* @param string $value
* @return string
* @since 7.0
*/
function ldap_8859_to_t61($value) {}
@ -75,7 +74,6 @@ function ldap_8859_to_t61($value) {}
* @link https://www.php.net/manual/en/function.ldap-t61-to-8859.php
* @param string $value
* @return string
* @since 7.0
*/
function ldap_t61_to_8859($value) {}
@ -120,7 +118,6 @@ function ldap_close ($link_identifier) {}
* @param string $bind_rdn [optional]
* @param string $bind_password [optional]
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 7.0
*/
function ldap_bind ($link_identifier, $bind_rdn = null, $bind_password = null) {}
@ -600,7 +597,6 @@ function ldap_add_ext ($link_identifier, $dn, array $entry, $serverctrls = []) {
* </p>
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 7.0
*/
function ldap_delete ($link_identifier, $dn, $serverctrls = []) {}
@ -649,7 +645,6 @@ function ldap_modify ($link_identifier, $dn, array $entry, $serverctrls = []) {}
* @param array $entry
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 7.0
*/
function ldap_mod_add ($link_identifier, $dn, array $entry, $serverctrls = []) {}
@ -666,7 +661,6 @@ function ldap_mod_add ($link_identifier, $dn, array $entry, $serverctrls = []) {
* @param array $entry
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return resource
* @since 7.0
*/
function ldap_mod_add_ext ($link_identifier, $dn, array $entry, $serverctrls = []) {}
@ -682,7 +676,6 @@ function ldap_mod_add_ext ($link_identifier, $dn, array $entry, $serverctrls = [
* @param array $entry
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 7.0
*/
function ldap_mod_replace ($link_identifier, $dn, array $entry, $serverctrls = []) {}
@ -715,7 +708,6 @@ function ldap_mod_replace_ext ($link_identifier, $dn, array $entry, $serverctrls
* @param array $entry
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 7.0
*/
function ldap_mod_del ($link_identifier, $dn, array $entry, $serverctrls = []) {}
@ -785,7 +777,6 @@ function ldap_error ($link_identifier) {}
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return mixed <b>TRUE</b> if <i>value</i> matches otherwise returns
* <b>FALSE</b>. Returns -1 on error.
* @since 7.0
*/
function ldap_compare ($link_identifier, $dn, $attribute, $value, $serverctrls = []) {}
@ -828,7 +819,6 @@ function ldap_sort ($link, $result, $sortfilter) {}
* </p>
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 7.0
*/
function ldap_rename ($link_identifier, $dn, $newrdn, $newparent, $deleteoldrdn, $serverctrls = []) {}

View File

@ -157,7 +157,6 @@ function session_encode () {}
* In addition to the normal set of configuration directives, a read_and_close option may also be provided. If set to TRUE, this will result in the session being closed immediately after being read, thereby avoiding unnecessary locking if the session data won't be changed.</p>
* @return bool This function returns true if a session was successfully started,
* otherwise false.
* @since 7.0
*/
function session_start ($options = []) {}
@ -310,7 +309,6 @@ function session_set_save_handler (SessionHandlerInterface $session_handler, $re
* </tr>
* </table>
* @return string the name of the current cache limiter.
* @since 7.0
*/
function session_cache_limiter ($cache_limiter = null) {}
@ -328,7 +326,6 @@ function session_cache_limiter ($cache_limiter = null) {}
* </p>
* @return int the current setting of session.cache_expire.
* The value returned should be read in minutes, defaults to 180.
* @since 7.0
*/
function session_cache_expire ($new_cache_expire = null) {}

View File

@ -690,10 +690,6 @@ function long2ip ($proper_address) {}
* @return string|array|false the value of the environment variable
* varname or an associative array with all environment variables if no variable name
* is provided, or false on an error.
* @since 5.5.38 The local_only parameter has been added.
* @since 5.6.24 The local_only parameter has been added.
* @since 7.0.9 The local_only parameter has been added.
* @since 7.1 The varname parameter was made optional.
*/
function getenv ($varname = null, $local_only = false) {}

View File

@ -166,7 +166,6 @@ function serialize ($value) {}
* <p>
* In case the passed string is not unserializeable, false is returned and
* E_NOTICE is issued.
* @since 7.0
*/
function unserialize ($str, array $options = null) {}

View File

@ -305,7 +305,6 @@ function is_scalar ($var) {}
* </p>
* @return bool <b>TRUE</b> if $var is callable, <b>FALSE</b>
* otherwise.
* @since 7.0
*/
function is_callable ($var, $syntax_only = null, &$callable_name = null) {}