forked from uvdesk/mailbox-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUVDeskMailboxBundle.php
More file actions
25 lines (20 loc) · 803 Bytes
/
UVDeskMailboxBundle.php
File metadata and controls
25 lines (20 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
namespace Webkul\UVDesk\MailboxBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Compiler\PassConfig;
use Webkul\UVDesk\MailboxBundle\DependencyInjection\UVDeskExtension;
// use Webkul\UVDesk\MailboxBundle\DependencyInjection\Compilers as UVDeskMailboxCompilers;
class UVDeskMailboxBundle extends Bundle
{
public function getContainerExtension()
{
return new UVDeskExtension();
}
public function build(ContainerBuilder $container)
{
parent::build($container);
// $container->addCompilerPass(new UVDeskAutomationCompilers\WorkflowPass());
// $container->addCompilerPass(new UVDeskAutomationCompilers\PreparedResponsePass());
}
}