# double-opt-in/5.5.0/src/Container/ServiceProviderInterface.php

Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification, version 5.5.0. 37 lines.

- Page: https://pluginprobe.com/plugins/double-opt-in/5.5.0/code/src/Container/ServiceProviderInterface.php
- Raw: https://pluginprobe.com/plugins/double-opt-in/5.5.0/raw/src/Container/ServiceProviderInterface.php
- Modified: 2026-07-13T09:16:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/double-opt-in/5.5.0/code/src/Container/ServiceProviderInterface.php#L10-L20`.

```php
<?php
/**
 * Service Provider Interface
 *
 * @package Forge12\DoubleOptIn\Container
 * @since   4.0.0
 */

namespace Forge12\DoubleOptIn\Container;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Interface ServiceProviderInterface
 *
 * @internal
 *
 * Service providers are responsible for registering bindings in the container.
 * Used by Core to wire its own services. Addons do NOT implement this —
 * they register their services inline inside {@see \Forge12\DoubleOptIn\Addon\AddonInterface::boot()}.
 */
interface ServiceProviderInterface {

	/**
	 * Register bindings in the container.
	 *
	 * This method is called before boot.
	 *
	 * @param Container $container The DI container.
	 *
	 * @return void
	 */
	public function register( Container $container ): void;
}

```
