Provider

Class Provider


Source

File: src/Tickets/Integrations/Provider.php

class Provider extends Service_Provider {

	/**
	 * Binds and sets up implementations.
	 *
	 * @since 5.6.3
	 */
	public function register() {
		$this->container->singleton( static::class, $this );

		$this->container->register( Plugins\Yoast_Duplicate_Post\Duplicate_Post::class);

		$this->container->register( Themes\Divi\Provider::class);
	}
}

Top ↑

Changelog

Changelog
Version Description
5.6.3 Introduced.

Top ↑

Methods

  • register — Binds and sets up implementations.