Nothing

Class Nothing


Source

File: src/Tribe/Models/Post_Types/Nothing.php

class Nothing extends Base {

	/**
	 * {@inheritDoc}
	 */
	protected function get_cache_slug() {
		return '';
	}

	/**
	 * {@inheritDoc}
	 */
	protected function build_properties( $filter ) {
		return [];
	}

	/**
	 * {@inheritDoc}
	 */
	public function to_post( $output = OBJECT, $filter = 'raw' ) {
		return null;
	}
}

Top ↑

Changelog

Changelog
Version Description
4.9.18 Introduced.

Top ↑

Methods