ContainerConfigurator.php
5 days ago
ContainerFactory.php
3 years ago
ContainerWrapper.php
1 year ago
IContainerConfigurator.php
3 years ago
index.php
3 years ago
IContainerConfigurator.php
20 lines
| 1 | <?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing |
| 2 | |
| 3 | namespace MailPoet\DI; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | use MailPoetVendor\Symfony\Component\DependencyInjection\ContainerBuilder; |
| 9 | |
| 10 | interface IContainerConfigurator { |
| 11 | const FREE_CONTAINER_SERVICE_SLUG = 'free_container'; |
| 12 | const PREMIUM_CONTAINER_SERVICE_SLUG = 'premium_container'; |
| 13 | |
| 14 | public function configure(ContainerBuilder $container); |
| 15 | |
| 16 | public function getDumpNamespace(); |
| 17 | |
| 18 | public function getDumpClassname(); |
| 19 | } |
| 20 |