Files
piratepoet/lib/DI/IContainerConfigurator.php
Jan Jakeš b39dac75d6 Autofix number of newlines between methods
[MAILPOET-2715]
2020-02-19 19:12:53 +00:00

17 lines
399 B
PHP

<?php
namespace MailPoet\DI;
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();
}