File "Provider.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/Events/Admin/Help_Hub/Provider.php
File size: 564 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Service Provider for interfacing with TEC\Events\Admin\Notice\Help_Hub.
 *
 * @since
 *
 * @package TEC\Events\Admin\Notice\Help_Hub
 */

namespace TEC\Events\Admin\Help_Hub;

use TEC\Common\Contracts\Service_Provider;

/**
 * Class Provider
 *
 * @since
 *
 * @package TEC\Events\Admin\Notice\Help_Hub
 */
class Provider extends Service_Provider {

	/**
	 * Register implementations.
	 *
	 * @since
	 */
	public function register() {
		$this->container->singleton( self::class, $this );
		$this->container->bind( TEC_Hub_Resource_Data::class );
	}
}