Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
the-events-calendar
/
common
/
src
/
Common
/
Integrations
:
Provider.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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 ); } }