add null remote connector and basic interface

This commit is contained in:
2022-04-30 16:48:07 +02:00
parent aecdfa6b12
commit 0212193940
7 changed files with 135 additions and 28 deletions

View File

@@ -11,8 +11,16 @@ declare(strict_types=1);
namespace Chill\CalendarBundle;
use Chill\CalendarBundle\Synchro\DependencyInjection\SynchroCompilerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class ChillCalendarBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new SynchroCompilerPass());
}
}