Tribe__Process__Tester::dispatch()

Call the dispatch method, in its vanilla form, as the base class would.

Since the purpose of this class is to test for async process support we do not want any option or env var to make this work in any other way but the async one.


Return

(mixed)


Top ↑

Source

File: src/Tribe/Process/Tester.php

	public function dispatch() {
		$url  = add_query_arg( $this->get_query_args(), $this->get_query_url() );
		$args = $this->get_post_args();

		return wp_remote_post( esc_url_raw( $url ), $args );
	}

Top ↑

Changelog

Changelog
Version Description
4.7.23 Introduced.