File "Provider.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/Common/Integrations/Provider.php
File size: 446 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Handles Integrations.
*
* @since 5.1.1
*
* @package TEC\Common\Integrations
*/
namespace TEC\Common\Integrations;
/**
* Class Provider.
*
* @since 5.1.1
*
* @package TEC\Common\Integrations
*/
class Provider extends \TEC\Common\Contracts\Service_Provider {
/**
* Binds and sets up implementations.
*
* @since 5.1.1
*/
public function register() {
$this->container->singleton( static::class, $this );
}
}