# double-opt-in/5.6.3/src/Container/BootableProviderInterface.php

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

- Page: https://pluginprobe.com/plugins/double-opt-in/5.6.3/code/src/Container/BootableProviderInterface.php
- Raw: https://pluginprobe.com/plugins/double-opt-in/5.6.3/raw/src/Container/BootableProviderInterface.php
- Modified: 2026-01-29T14:02:52+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.6.3/code/src/Container/BootableProviderInterface.php#L10-L20`.

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

namespace Forge12\DoubleOptIn\Container;

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

/**
 * Interface BootableProviderInterface
 *
 * Providers implementing this interface will have their boot method called
 * after all providers have been registered.
 */
interface BootableProviderInterface extends ServiceProviderInterface {

	/**
	 * Bootstrap the service.
	 *
	 * Called after all providers are registered.
	 *
	 * @param Container $container The DI container.
	 *
	 * @return void
	 */
	public function boot( Container $container ): void;
}

```
