function AbstractArray::toArray
@inheritDoc
Overrides ArrayInterface::toArray
2 calls to AbstractArray::toArray()
- AbstractMap::toArray in vendor/
ramsey/ collection/ src/ Map/ AbstractMap.php - AbstractMap::toArray in vendor/
ramsey/ collection/ src/ Map/ AbstractMap.php
1 method overrides AbstractArray::toArray()
- AbstractMap::toArray in vendor/
ramsey/ collection/ src/ Map/ AbstractMap.php
File
-
vendor/
ramsey/ collection/ src/ AbstractArray.php, line 162
Class
- AbstractArray
- This class provides a basic implementation of `ArrayInterface`, to minimize the effort required to implement this interface.
Namespace
Ramsey\CollectionCode
public function toArray() : array {
return $this->data;
}