mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
fix #38402: wrong proto for Array*::offsetGet()
This commit is contained in:
parent
5b4ecd6028
commit
c45c9748dc
1 changed files with 2 additions and 2 deletions
|
@ -485,8 +485,8 @@ SPL_METHOD(Array, offsetExists)
|
|||
RETURN_BOOL(spl_array_has_dimension_ex(0, getThis(), index, 1 TSRMLS_CC));
|
||||
} /* }}} */
|
||||
|
||||
/* {{{ proto bool ArrayObject::offsetGet(mixed $index)
|
||||
proto bool ArrayIterator::offsetGet(mixed $index)
|
||||
/* {{{ proto mixed ArrayObject::offsetGet(mixed $index)
|
||||
proto mixed ArrayIterator::offsetGet(mixed $index)
|
||||
Returns the value at the specified $index. */
|
||||
SPL_METHOD(Array, offsetGet)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue