Add missing @removed tags for ereg and sybace

This commit is contained in:
Maxim.Kolmakov 2020-01-22 18:34:16 +01:00
parent b1041ca152
commit db02234f03
2 changed files with 24 additions and 22 deletions

View File

@ -199,6 +199,7 @@ function split ($pattern, $string, $limit = -1) {}
* only one element will be returned. Of course, this is also true if
* <i>string</i> is empty. If an error occurs,
* <b>spliti</b> returns <b>FALSE</b>.
* @removed 7.0
*/
function spliti ($pattern, $string, $limit = -1) {}
@ -214,6 +215,7 @@ function spliti ($pattern, $string, $limit = -1) {}
* <i>string</i> with each alphabetic character converted to
* a bracket expression; this bracket expression contains that character's
* uppercase and lowercase form. Other characters remain unchanged.
* @removed 7.0
*/
function sql_regcase ($string) {}

View File

@ -21,7 +21,7 @@ function sybase_connect ($servername = null, $username = null, $password = null,
* @param $charset string[optional]
* @param $appname string[optional]
* @return resource a positive Sybase persistent link identifier on success
* @deprecated 7.0
* @removed 7.0
*/
function sybase_pconnect ($servername = null, $username = null, $password = null, $charset = null, $appname = null) {}
@ -30,7 +30,7 @@ function sybase_pconnect ($servername = null, $username = null, $password = null
* @link https://php.net/manual/en/function.sybase-close.php
* @param $link_identifier resource[optional]
* @return bool
* @deprecated 7.0
* @removed 7.0
*/
function sybase_close ($link_identifier = null) {}
@ -40,7 +40,7 @@ function sybase_close ($link_identifier = null) {}
* @param $database_name string
* @param $link_identifier resource[optional]
* @return bool
* @deprecated 7.0
* @removed 7.0
*/
function sybase_select_db ($database_name, $link_identifier = null) {}
@ -50,7 +50,7 @@ function sybase_select_db ($database_name, $link_identifier = null) {}
* @param $query string
* @param $link_identifier resource[optional]
* @return mixed a positive Sybase result identifier on success, false on error,
* @deprecated 7.0
* @removed 7.0
*/
function sybase_query ($query, $link_identifier = null) {}
@ -61,7 +61,7 @@ function sybase_query ($query, $link_identifier = null) {}
* @param $link_identifier resource
* @param $store_result bool[optional]
* @return resource|false a positive Sybase result identifier on success, or false on
* @deprecated 7.0
* @removed 7.0
*/
function sybase_unbuffered_query ($query, $link_identifier, $store_result = null) {}
@ -70,7 +70,7 @@ function sybase_unbuffered_query ($query, $link_identifier, $store_result = null
* @link https://php.net/manual/en/function.sybase-free-result.php
* @param $result resource
* @return bool
* @deprecated 7.0
* @removed 7.0
*/
function sybase_free_result ($result) {}
@ -78,7 +78,7 @@ function sybase_free_result ($result) {}
* Returns the last message from the server
* @link https://php.net/manual/en/function.sybase-get-last-message.php
* @return string the message as a string.
* @deprecated 7.0
* @removed 7.0
*/
function sybase_get_last_message () {}
@ -87,7 +87,7 @@ function sybase_get_last_message () {}
* @link https://php.net/manual/en/function.sybase-num-rows.php
* @param $result resource
* @return int the number of rows as an integer.
* @deprecated 7.0
* @removed 7.0
*/
function sybase_num_rows ($result) {}
@ -96,7 +96,7 @@ function sybase_num_rows ($result) {}
* @link https://php.net/manual/en/function.sybase-num-fields.php
* @param $result resource
* @return int the number of fields as an integer.
* @deprecated 7.0
* @removed 7.0
*/
function sybase_num_fields ($result) {}
@ -105,7 +105,7 @@ function sybase_num_fields ($result) {}
* @link https://php.net/manual/en/function.sybase-fetch-row.php
* @param $result resource
* @return array|false an array that corresponds to the fetched row, or false if there
* @deprecated 7.0
* @removed 7.0
*/
function sybase_fetch_row ($result) {}
@ -114,7 +114,7 @@ function sybase_fetch_row ($result) {}
* @link https://php.net/manual/en/function.sybase-fetch-array.php
* @param $result resource
* @return array|false an array that corresponds to the fetched row, or false if there
* @deprecated 7.0
* @removed 7.0
*/
function sybase_fetch_array ($result) {}
@ -123,7 +123,7 @@ function sybase_fetch_array ($result) {}
* @link https://php.net/manual/en/function.sybase-fetch-assoc.php
* @param $result resource
* @return array|false an array that corresponds to the fetched row, or false if there
* @deprecated 7.0
* @removed 7.0
*/
function sybase_fetch_assoc ($result) {}
@ -133,7 +133,7 @@ function sybase_fetch_assoc ($result) {}
* @param $result resource
* @param $object mixed[optional]
* @return object an object with properties that correspond to the fetched row, or
* @deprecated 7.0
* @removed 7.0
*/
function sybase_fetch_object ($result, $object = null) {}
@ -143,7 +143,7 @@ function sybase_fetch_object ($result, $object = null) {}
* @param $result_identifier resource
* @param $row_number int
* @return bool
* @deprecated 7.0
* @removed 7.0
*/
function sybase_data_seek ($result_identifier, $row_number) {}
@ -153,7 +153,7 @@ function sybase_data_seek ($result_identifier, $row_number) {}
* @param $result resource
* @param $field_offset int[optional]
* @return object an object containing field information.
* @deprecated 7.0
* @removed 7.0
*/
function sybase_fetch_field ($result, $field_offset = null) {}
@ -163,7 +163,7 @@ function sybase_fetch_field ($result, $field_offset = null) {}
* @param $result resource
* @param $field_offset int
* @return bool
* @deprecated 7.0
* @removed 7.0
*/
function sybase_field_seek ($result, $field_offset) {}
@ -174,7 +174,7 @@ function sybase_field_seek ($result, $field_offset) {}
* @param $row int
* @param $field mixed
* @return string
* @deprecated 7.0
* @removed 7.0
*/
function sybase_result ($result, $row, $field) {}
@ -183,7 +183,7 @@ function sybase_result ($result, $row, $field) {}
* @link https://php.net/manual/en/function.sybase-affected-rows.php
* @param $link_identifier resource[optional]
* @return int the number of affected rows, as an integer.
* @deprecated 7.0
* @removed 7.0
*/
function sybase_affected_rows ($link_identifier = null) {}
@ -192,7 +192,7 @@ function sybase_affected_rows ($link_identifier = null) {}
* @link https://php.net/manual/en/function.sybase-min-client-severity.php
* @param $severity int
* @return void
* @deprecated 7.0
* @removed 7.0
*/
function sybase_min_client_severity ($severity) {}
@ -201,7 +201,7 @@ function sybase_min_client_severity ($severity) {}
* @link https://php.net/manual/en/function.sybase-min-server-severity.php
* @param $severity int
* @return void
* @deprecated 7.0
* @removed 7.0
*/
function sybase_min_server_severity ($severity) {}
@ -211,7 +211,7 @@ function sybase_min_server_severity ($severity) {}
* @param $handler callback
* @param $connection resource[optional]
* @return bool
* @deprecated 7.0
* @removed 7.0
*/
function sybase_set_message_handler ($handler, $connection = null) {}
@ -220,6 +220,6 @@ function sybase_set_message_handler ($handler, $connection = null) {}
* @link https://php.net/manual/en/function.sybase-deadlock-retry-count.php
* @param $retry_count int
* @return void
* @deprecated 7.0
* @removed 7.0
*/
function sybase_deadlock_retry_count ($retry_count) {}