Lazy_String::value()

Returns the string value, just a proxy of the __toString method.


Return

(string) The string value.


Top ↑

Source

File: src/Tribe/Utils/Lazy_String.php

	public function value() {
		return $this->__toString();
	}

Top ↑

Changelog

Changelog
Version Description
4.9.16 Introduced.