Zapier_Provider::register()

Binds and sets up implementations.

Contents


Source

File: src/Tribe/Integrations/Event_Automator/Zapier_Provider.php

	public function register() {
		if ( ! self::is_active() ) {
			return;
		}

		// Requires single instance to use the same API class through the call.
		$this->container->singleton( Create_Events::class );
		$this->container->singleton( Find_Events::class );
		$this->container->singleton( Update_Events::class );

		$this->add_actions();
		$this->add_filters();
	}

Top ↑

Changelog

Changelog
Version Description
7.0.0 Introduced.