11 lines
251 B
PHP
11 lines
251 B
PHP
<?php
|
|
|
|
use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
|
|
use FOS\ElasticaBundle\FOSElasticaBundle;
|
|
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
|
|
|
|
return array(
|
|
new FrameworkBundle(),
|
|
new FOSElasticaBundle(),
|
|
new DoctrineBundle()
|
|
);
|