code
stringlengths
31
1.39M
docstring
stringlengths
23
16.8k
func_name
stringlengths
1
126
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
7
166
url
stringlengths
50
220
license
stringclasses
7 values
#[TentativeType] public function beginChildren() : void { }
Begin children @link https://php.net/manual/en/recursiveiteratoriterator.beginchildren.php @return void
beginChildren
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function endChildren() : void { }
End children @link https://php.net/manual/en/recursiveiteratoriterator.endchildren.php @return void
endChildren
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function nextElement() : void { }
Next element @link https://php.net/manual/en/recursiveiteratoriterator.nextelement.php @return void
nextElement
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function setMaxDepth(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $maxDepth = -1) : void { }
Set max depth @link https://php.net/manual/en/recursiveiteratoriterator.setmaxdepth.php @param int $maxDepth [optional] <p> The maximum allowed depth. Default -1 is used for any depth. </p> @return void
setMaxDepth
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getMaxDepth() : int|false { }
Get max depth @link https://php.net/manual/en/recursiveiteratoriterator.getmaxdepth.php @return int|false The maximum accepted depth, or false if any depth is allowed.
getMaxDepth
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getInnerIterator() : ?\Iterator { }
Get the inner iterator @link https://php.net/manual/en/iteratoriterator.getinneriterator.php @return Iterator|null The inner iterator as passed to IteratorIterator::__construct.
getInnerIterator
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function rewind() : void { }
Rewind to the first element @link https://php.net/manual/en/iteratoriterator.rewind.php @return void
rewind
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function valid() : bool { }
Checks if the iterator is valid @link https://php.net/manual/en/iteratoriterator.valid.php @return bool true if the iterator is valid, otherwise false
valid
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function key() : mixed { }
Get the key of the current element @link https://php.net/manual/en/iteratoriterator.key.php @return mixed The key of the current element.
key
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function current() : mixed { }
Get the current value @link https://php.net/manual/en/iteratoriterator.current.php @return mixed The value of the current element.
current
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function next() : void { }
Forward to the next element @link https://php.net/manual/en/iteratoriterator.next.php @return void
next
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function rewind() : void { }
Rewind the iterator @link https://php.net/manual/en/filteriterator.rewind.php @return void
rewind
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function next() : void { }
Move the iterator forward @link https://php.net/manual/en/filteriterator.next.php @return void
next
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function hasChildren() : bool { }
Check whether the inner iterator's current element has children @link https://php.net/manual/en/recursivefilteriterator.haschildren.php @return bool true if the inner iterator has children, otherwise false
hasChildren
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getChildren() : ?\RecursiveFilterIterator { }
Return the inner iterator's children contained in a RecursiveFilterIterator @link https://php.net/manual/en/recursivefilteriterator.getchildren.php @return RecursiveFilterIterator|null containing the inner iterator's children.
getChildren
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function accept() : bool { }
Determines acceptability @link https://php.net/manual/en/parentiterator.accept.php @return bool true if the current element is acceptable, otherwise false.
accept
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function rewind() : void { }
Rewind the iterator @link https://php.net/manual/en/cachingiterator.rewind.php @return void
rewind
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function valid() : bool { }
Check whether the current element is valid @link https://php.net/manual/en/cachingiterator.valid.php @return bool true on success or false on failure.
valid
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function next() : void { }
Move the iterator forward @link https://php.net/manual/en/cachingiterator.next.php @return void
next
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function hasNext() : bool { }
Check whether the inner iterator has a valid next element @link https://php.net/manual/en/cachingiterator.hasnext.php @return bool true on success or false on failure.
hasNext
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function __toString() : string { }
Return the string representation of the current iteration based on the flag being used. @link https://php.net/manual/en/cachingiterator.tostring.php @return string The string representation of the current iteration based on the flag being used.
__toString
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getFlags() : int { }
Get flags used @link https://php.net/manual/en/cachingiterator.getflags.php @return int Bitmask of the flags
getFlags
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function setFlags(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $flags) : void { }
The setFlags purpose @link https://php.net/manual/en/cachingiterator.setflags.php @param int $flags Bitmask of the flags to set. @return void
setFlags
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function offsetGet($key) : mixed { }
Internal cache array index to retrieve. @link https://php.net/manual/en/cachingiterator.offsetget.php @param string $key The index of the element to retrieve. @return mixed @throws BadMethodCallException when the {@see CachingIterator::FULL_CACHE} flag is not being used.
offsetGet
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function offsetSet($key, #[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $value) : void { }
Set an element on the internal cache array. @link https://php.net/manual/en/cachingiterator.offsetset.php @param string $key The index of the element to be set. @param string $value The new value for the <i>index</i>. @return void @throws BadMethodCallException when the {@see CachingIterator::FULL_CACHE} flag is not being used.
offsetSet
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function offsetUnset($key) : void { }
Remove an element from the internal cache array. @link https://php.net/manual/en/cachingiterator.offsetunset.php @param string $key The index of the element to be unset. @return void @throws BadMethodCallException when the {@see CachingIterator::FULL_CACHE} flag is not being used.
offsetUnset
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function offsetExists($key) : bool { }
Return whether an element at the index exists on the internal cache array. @link https://php.net/manual/en/cachingiterator.offsetexists.php @param string $key The index being checked. @return bool true if an entry referenced by the offset exists, false otherwise. @throws BadMethodCallException when the {@see CachingIterator::FULL_CACHE} flag is not being used.
offsetExists
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getCache() : array { }
Retrieve the contents of the cache @link https://php.net/manual/en/cachingiterator.getcache.php @return array An array containing the cache items. @throws BadMethodCallException when the {@see CachingIterator::FULL_CACHE} flag is not being used.
getCache
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function count() : int { }
The number of elements in the iterator @link https://php.net/manual/en/cachingiterator.count.php @return int The count of the elements iterated over. @throws BadMethodCallException when the {@see CachingIterator::FULL_CACHE} flag is not being used. @since 5.2.2
count
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function hasChildren() : bool { }
Check whether the current element of the inner iterator has children @link https://php.net/manual/en/recursivecachingiterator.haschildren.php @return bool true if the inner iterator has children, otherwise false
hasChildren
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getChildren() : ?\RecursiveCachingIterator { }
Return the inner iterator's children as a RecursiveCachingIterator @link https://php.net/manual/en/recursivecachingiterator.getchildren.php @return RecursiveCachingIterator|null The inner iterator's children, as a RecursiveCachingIterator.
getChildren
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function rewind() : void { }
Prevents the rewind operation on the inner iterator. @link https://php.net/manual/en/norewinditerator.rewind.php @return void
rewind
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function valid() : bool { }
Validates the iterator @link https://php.net/manual/en/norewinditerator.valid.php @return bool true on success or false on failure.
valid
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function key() : mixed { }
Get the current key @link https://php.net/manual/en/norewinditerator.key.php @return mixed The key of the current element.
key
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function current() : mixed { }
Get the current value @link https://php.net/manual/en/norewinditerator.current.php @return mixed The current value.
current
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function next() : void { }
Forward to the next element @link https://php.net/manual/en/norewinditerator.next.php @return void
next
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function append(\Iterator $iterator) : void { }
Appends an iterator @link https://php.net/manual/en/appenditerator.append.php @param Iterator $iterator <p> The iterator to append. </p> @return void
append
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function rewind() : void { }
Rewinds the Iterator @link https://php.net/manual/en/appenditerator.rewind.php @return void
rewind
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function valid() : bool { }
Checks validity of the current element @link https://php.net/manual/en/appenditerator.valid.php @return bool true on success or false on failure.
valid
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function current() : mixed { }
Gets the current value @link https://php.net/manual/en/appenditerator.current.php @return mixed The current value if it is valid or null otherwise.
current
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function next() : void { }
Moves to the next element @link https://php.net/manual/en/appenditerator.next.php @return void
next
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getIteratorIndex() : ?int { }
Gets an index of iterators @link https://php.net/manual/en/appenditerator.getiteratorindex.php @return int|null The index of iterators.
getIteratorIndex
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getArrayIterator() : \ArrayIterator { }
The getArrayIterator method @link https://php.net/manual/en/appenditerator.getarrayiterator.php @return ArrayIterator containing the appended iterators.
getArrayIterator
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function next() : void { }
Moves the inner Iterator forward or rewinds it @link https://php.net/manual/en/infiniteiterator.next.php @return void
next
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function accept() : bool { }
Get accept status @link https://php.net/manual/en/regexiterator.accept.php @return bool true if a match, false otherwise.
accept
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getMode() : int { }
Returns operation mode. @link https://php.net/manual/en/regexiterator.getmode.php @return int the operation mode.
getMode
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function setMode(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $mode) : void { }
Sets the operation mode. @link https://php.net/manual/en/regexiterator.setmode.php @param int $mode <p> The operation mode. </p> <p> The available modes are listed below. The actual meanings of these modes are described in the predefined constants. <table> <b>RegexIterator</b> modes <tr valign="top"> <td>value</td> <td>constant</td> </tr> <tr valign="top"> <td>0</td> <td> RegexIterator::MATCH </td> </tr> <tr valign="top"> <td>1</td> <td> RegexIterator::GET_MATCH </td> </tr> <tr valign="top"> <td>2</td> <td> RegexIterator::ALL_MATCHES </td> </tr> <tr valign="top"> <td>3</td> <td> RegexIterator::SPLIT </td> </tr> <tr valign="top"> <td>4</td> <td> RegexIterator::REPLACE </td> </tr> </table> </p> @return void
setMode
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getFlags() : int { }
Get flags @link https://php.net/manual/en/regexiterator.getflags.php @return int the set flags.
getFlags
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function setFlags(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $flags) : void { }
Sets the flags. @link https://php.net/manual/en/regexiterator.setflags.php @param int $flags <p> The flags to set, a bitmask of class constants. </p> <p> The available flags are listed below. The actual meanings of these flags are described in the predefined constants. <table> <b>RegexIterator</b> flags <tr valign="top"> <td>value</td> <td>constant</td> </tr> <tr valign="top"> <td>1</td> <td> RegexIterator::USE_KEY </td> </tr> </table> </p> @return void
setFlags
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getRegex() : string { }
Returns current regular expression @link https://secure.php.net/manual/en/regexiterator.getregex.php @return string @since 5.4
getRegex
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getPregFlags() : int { }
Returns the regular expression flags. @link https://php.net/manual/en/regexiterator.getpregflags.php @return int a bitmask of the regular expression flags.
getPregFlags
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function setPregFlags(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $pregFlags) : void { }
Sets the regular expression flags. @link https://php.net/manual/en/regexiterator.setpregflags.php @param int $pregFlags <p> The regular expression flags. See <b>RegexIterator::__construct</b> for an overview of available flags. </p> @return void
setPregFlags
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function hasChildren() : bool { }
Returns whether an iterator can be obtained for the current entry. @link https://php.net/manual/en/recursiveregexiterator.haschildren.php @return bool true if an iterator can be obtained for the current entry, otherwise returns false.
hasChildren
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getChildren() : \RecursiveRegexIterator { }
Returns an iterator for the current entry. @link https://php.net/manual/en/recursiveregexiterator.getchildren.php @return RecursiveRegexIterator An iterator for the current entry, if it can be iterated over by the inner iterator.
getChildren
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function key() : mixed { }
Get the key of the current element @link https://php.net/manual/en/recursivetreeiterator.key.php @return string the current key prefixed and postfixed.
key
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function current() : mixed { }
Get current element @link https://php.net/manual/en/recursivetreeiterator.current.php @return string the current element prefixed and postfixed.
current
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getPrefix() : string { }
Get the prefix @link https://php.net/manual/en/recursivetreeiterator.getprefix.php @return string the string to place in front of current element
getPrefix
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function setPrefixPart(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $part, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $value) : void { }
Set a part of the prefix @link https://php.net/manual/en/recursivetreeiterator.setprefixpart.php @param int $part <p> One of the RecursiveTreeIterator::PREFIX_* constants. </p> @param string $value <p> The value to assign to the part of the prefix specified in <i>part</i>. </p> @return void
setPrefixPart
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getEntry() : string { }
Get current entry @link https://php.net/manual/en/recursivetreeiterator.getentry.php @return string the part of the tree built for the current element.
getEntry
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getPostfix() : string { }
Get the postfix @link https://php.net/manual/en/recursivetreeiterator.getpostfix.php @return string to place after the current element.
getPostfix
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function offsetExists(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $key) : bool { }
Returns whether the requested index exists @link https://php.net/manual/en/arrayobject.offsetexists.php @param TKey $key <p> The index being checked. </p> @return bool true if the requested index exists, otherwise false
offsetExists
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function offsetGet(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $key) : mixed { }
Returns the value at the specified index @link https://php.net/manual/en/arrayobject.offsetget.php @param TKey $key <p> The index with the value. </p> @return TValue|null The value at the specified index or null.
offsetGet
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function offsetSet(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $key, #[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $value) : void { }
Sets the value at the specified index to newval @link https://php.net/manual/en/arrayobject.offsetset.php @param TKey $key <p> The index being set. </p> @param TValue $value <p> The new value for the <i>index</i>. </p> @return void
offsetSet
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function offsetUnset(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $key) : void { }
Unsets the value at the specified index @link https://php.net/manual/en/arrayobject.offsetunset.php @param TKey $key <p> The index being unset. </p> @return void
offsetUnset
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function append(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $value) : void { }
Appends the value @link https://php.net/manual/en/arrayobject.append.php @param TValue $value <p> The value being appended. </p> @return void
append
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getArrayCopy() : array { }
Creates a copy of the ArrayObject. @link https://php.net/manual/en/arrayobject.getarraycopy.php @return array<TValue> a copy of the array. When the <b>ArrayObject</b> refers to an object an array of the public properties of that object will be returned.
getArrayCopy
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function count() : int { }
Get the number of public properties in the ArrayObject When the <b>ArrayObject</b> is constructed from an array all properties are public. @link https://php.net/manual/en/arrayobject.count.php @return int The number of public properties in the ArrayObject.
count
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getFlags() : int { }
Gets the behavior flags. @link https://php.net/manual/en/arrayobject.getflags.php @return int the behavior flags of the ArrayObject.
getFlags
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function setFlags(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $flags) : void { }
Sets the behavior flags. @link https://php.net/manual/en/arrayobject.setflags.php @param int $flags <p> The new ArrayObject behavior. It takes on either a bitmask, or named constants. Using named constants is strongly encouraged to ensure compatibility for future versions. </p> <p> The available behavior flags are listed below. The actual meanings of these flags are described in the predefined constants. <table> ArrayObject behavior flags <tr valign="top"> <td>value</td> <td>constant</td> </tr> <tr valign="top"> <td>1</td> <td> ArrayObject::STD_PROP_LIST </td> </tr> <tr valign="top"> <td>2</td> <td> ArrayObject::ARRAY_AS_PROPS </td> </tr> </table> </p> @return void
setFlags
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] #[LanguageLevelTypeAware(['8.3' => 'true'], default: 'bool')] public function asort(#[PhpStormStubsElementAvailable(from: '8.0')] int $flags = \SORT_REGULAR) { }
Sort the entries by value @link https://php.net/manual/en/arrayobject.asort.php
asort
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] #[LanguageLevelTypeAware(['8.3' => 'true'], default: 'bool')] public function ksort(#[PhpStormStubsElementAvailable(from: '8.0')] int $flags = \SORT_REGULAR) { }
Sort the entries by key @link https://php.net/manual/en/arrayobject.ksort.php
ksort
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] #[LanguageLevelTypeAware(['8.3' => 'true'], default: 'bool')] public function uasort(#[LanguageLevelTypeAware(['8.0' => 'callable'], default: '')] $callback) { }
Sort the entries with a user-defined comparison function and maintain key association @link https://php.net/manual/en/arrayobject.uasort.php @param callable(TValue, TValue):int $callback <p> Function <i>cmp_function</i> should accept two parameters which will be filled by pairs of entries. The comparison function must return an integer less than, equal to, or greater than zero if the first argument is considered to be respectively less than, equal to, or greater than the second. </p>
uasort
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] #[LanguageLevelTypeAware(['8.3' => 'true'], default: 'bool')] public function uksort(#[LanguageLevelTypeAware(['8.0' => 'callable'], default: '')] $callback) { }
Sort the entries by keys using a user-defined comparison function @link https://php.net/manual/en/arrayobject.uksort.php @param callable(TValue, TValue):int $callback <p> The callback comparison function. </p> <p> Function <i>cmp_function</i> should accept two parameters which will be filled by pairs of entry keys. The comparison function must return an integer less than, equal to, or greater than zero if the first argument is considered to be respectively less than, equal to, or greater than the second. </p>
uksort
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] #[LanguageLevelTypeAware(['8.3' => 'true'], default: 'bool')] public function natsort() { }
Sort entries using a "natural order" algorithm @link https://php.net/manual/en/arrayobject.natsort.php
natsort
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] #[LanguageLevelTypeAware(['8.3' => 'true'], default: 'bool')] public function natcasesort() { }
Sort an array using a case insensitive "natural order" algorithm @link https://php.net/manual/en/arrayobject.natcasesort.php
natcasesort
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function unserialize(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $data) : void { }
Unserialize an ArrayObject @link https://php.net/manual/en/arrayobject.unserialize.php @param string $data <p> The serialized <b>ArrayObject</b>. </p> @return void
unserialize
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function serialize() : string { }
Serialize an ArrayObject @link https://php.net/manual/en/arrayobject.serialize.php @return string The serialized representation of the <b>ArrayObject</b>.
serialize
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getIterator() : \Iterator { }
Create a new iterator from an ArrayObject instance @link https://php.net/manual/en/arrayobject.getiterator.php @return ArrayIterator<TKey, TValue> An iterator from an <b>ArrayObject</b>.
getIterator
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function exchangeArray(#[LanguageLevelTypeAware(['8.0' => 'object|array'], default: '')] $array) : array { }
Exchange the array for another one. @link https://php.net/manual/en/arrayobject.exchangearray.php @param mixed $array <p> The new array or object to exchange with the current array. </p> @return array the old array.
exchangeArray
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function setIteratorClass(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $iteratorClass) : void { }
Sets the iterator classname for the ArrayObject. @link https://php.net/manual/en/arrayobject.setiteratorclass.php @param class-string<ArrayIterator> $iteratorClass <p> The classname of the array iterator to use when iterating over this object. </p> @return void
setIteratorClass
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getIteratorClass() : string { }
Gets the iterator classname for the ArrayObject. @link https://php.net/manual/en/arrayobject.getiteratorclass.php @return class-string<ArrayIterator> the iterator class name that is used to iterate over this object.
getIteratorClass
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function offsetExists(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $key) : bool { }
Check if offset exists @link https://php.net/manual/en/arrayiterator.offsetexists.php @param string $key <p> The offset being checked. </p> @return bool true if the offset exists, otherwise false
offsetExists
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function offsetGet(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $key) : mixed { }
Get value for an offset @link https://php.net/manual/en/arrayiterator.offsetget.php @param string $key <p> The offset to get the value from. </p> @return mixed The value at offset <i>index</i>.
offsetGet
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function offsetSet(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $key, #[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $value) : void { }
Set value for an offset @link https://php.net/manual/en/arrayiterator.offsetset.php @param string $key <p> The index to set for. </p> @param string $value <p> The new value to store at the index. </p> @return void
offsetSet
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function offsetUnset(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $key) : void { }
Unset value for an offset @link https://php.net/manual/en/arrayiterator.offsetunset.php @param string $key <p> The offset to unset. </p> @return void
offsetUnset
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function append(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $value) : void { }
Append an element @link https://php.net/manual/en/arrayiterator.append.php @param mixed $value <p> The value to append. </p> @return void
append
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getArrayCopy() : array { }
Get array copy @link https://php.net/manual/en/arrayiterator.getarraycopy.php @return array A copy of the array, or array of public properties if ArrayIterator refers to an object.
getArrayCopy
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function count() : int { }
Count elements @link https://php.net/manual/en/arrayiterator.count.php @return int<0,max> The number of elements or public properties in the associated array or object, respectively.
count
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function getFlags() : int { }
Get flags @link https://php.net/manual/en/arrayiterator.getflags.php @return int The current flags.
getFlags
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function setFlags(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $flags) : void { }
Set behaviour flags @link https://php.net/manual/en/arrayiterator.setflags.php @param string $flags <p> A bitmask as follows: 0 = Properties of the object have their normal functionality when accessed as list (var_dump, foreach, etc.). 1 = Array indices can be accessed as properties in read/write. </p> @return void
setFlags
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] #[LanguageLevelTypeAware(['8.3' => 'true'], default: 'bool')] public function asort(#[PhpStormStubsElementAvailable(from: '8.0')] int $flags = \SORT_REGULAR) { }
Sort array by values @link https://php.net/manual/en/arrayiterator.asort.php
asort
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] #[LanguageLevelTypeAware(['8.3' => 'true'], default: 'bool')] public function ksort(#[PhpStormStubsElementAvailable(from: '8.0')] int $flags = \SORT_REGULAR) { }
Sort array by keys @link https://php.net/manual/en/arrayiterator.ksort.php
ksort
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] #[LanguageLevelTypeAware(['8.3' => 'true'], default: 'bool')] public function uasort(#[LanguageLevelTypeAware(['8.0' => 'callable'], default: '')] $callback) { }
User defined sort @link https://php.net/manual/en/arrayiterator.uasort.php @param callable $callback <p> The compare function used for the sort. </p>
uasort
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] #[LanguageLevelTypeAware(['8.3' => 'true'], default: 'bool')] public function uksort(#[LanguageLevelTypeAware(['8.0' => 'callable'], default: '')] $callback) { }
User defined sort @link https://php.net/manual/en/arrayiterator.uksort.php @param callable $callback <p> The compare function used for the sort. </p>
uksort
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] #[LanguageLevelTypeAware(['8.3' => 'true'], default: 'bool')] public function natsort() { }
Sort an array naturally @link https://php.net/manual/en/arrayiterator.natsort.php
natsort
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] #[LanguageLevelTypeAware(['8.3' => 'true'], default: 'bool')] public function natcasesort() { }
Sort an array naturally, case insensitive @link https://php.net/manual/en/arrayiterator.natcasesort.php
natcasesort
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function unserialize(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $data) : void { }
Unserialize @link https://php.net/manual/en/arrayiterator.unserialize.php @param string $data <p> The serialized ArrayIterator object to be unserialized. </p> @return void
unserialize
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function serialize() : string { }
Serialize @link https://php.net/manual/en/arrayiterator.serialize.php @return string The serialized <b>ArrayIterator</b>.
serialize
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function rewind() : void { }
Rewind array back to the start @link https://php.net/manual/en/arrayiterator.rewind.php @return void
rewind
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT
#[TentativeType] public function current() : mixed { }
Return current array entry @link https://php.net/manual/en/arrayiterator.current.php @return mixed The current array entry.
current
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
MIT