19 lines
526 B
PHP
19 lines
526 B
PHP
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing
|
|
|
|
namespace MailPoet\DI;
|
|
|
|
if (!defined('ABSPATH')) exit;
|
|
|
|
|
|
use MailPoetVendor\Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
|
|
interface IContainerConfigurator {
|
|
const FREE_CONTAINER_SERVICE_SLUG = 'free_container';
|
|
const PREMIUM_CONTAINER_SERVICE_SLUG = 'premium_container';
|
|
|
|
public function configure(ContainerBuilder $container);
|
|
|
|
public function getDumpNamespace();
|
|
|
|
public function getDumpClassname();
|
|
}
|