Lazy_Collection::all()
Fetches the array items and returns them.
Return
(array) The array items.
Source
File: src/Tribe/Utils/Lazy_Collection.php
public function all() {
$this->resolve();
return $this->items;
}
Changelog
| Version | Description |
|---|---|
| 4.9.14 | Introduced. |