Spaces:
No application file
No application file
| namespace Mautic\SmsBundle; | |
| use Mautic\PluginBundle\Bundle\PluginBundleBase; | |
| use Mautic\SmsBundle\DependencyInjection\Compiler\SmsTransportPass; | |
| use Symfony\Component\DependencyInjection\ContainerBuilder; | |
| class MauticSmsBundle extends PluginBundleBase | |
| { | |
| public function build(ContainerBuilder $container): void | |
| { | |
| $container->addCompilerPass(new SmsTransportPass(), \Symfony\Component\DependencyInjection\Compiler\PassConfig::TYPE_BEFORE_OPTIMIZATION, 0); | |
| } | |
| } | |