Tribe__Process__Tester::sync_handle( array|null $data_source = null )

Handles the process immediately, not in an async manner.


Parameters

$data_source

(array|null) (Optional) If not provided the method will read the handler data from the request array.

Default value: null


Top ↑

Return

(mixed)


Top ↑

Source

File: src/Tribe/Process/Tester.php

	public function sync_handle( array $data_source = null ) {
		/*
		 * The purpose of this class is exactly to make sure async processing works
		 * so it will do nothing if running in synchronous mode.
		 */
		return null;
	}

Top ↑

Changelog

Changelog
Version Description
4.7.12 Introduced.