Lazy_Collection::all()

Fetches the array items and returns them.


Return

(array) The array items.


Top ↑

Source

File: src/Tribe/Utils/Lazy_Collection.php

	public function all() {
		$this->resolve();

		return $this->items;
	}

Top ↑

Changelog

Changelog
Version Description
4.9.14 Introduced.