-
-
Notifications
You must be signed in to change notification settings - Fork 899
Expand file tree
/
Copy pathConfigurableContainerFactory.php
More file actions
47 lines (39 loc) · 1.38 KB
/
ConfigurableContainerFactory.php
File metadata and controls
47 lines (39 loc) · 1.38 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/*
* This file is part of the NelmioApiDocBundle package.
*
* (c) Nelmio
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Nelmio\ApiDocBundle\Tests\Functional;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\HttpKernel\Bundle\Bundle;
final class ConfigurableContainerFactory
{
/**
* @var ContainerInterface
*/
private $container;
/**
* @param Bundle[] $extraBundles
* @param array<string, array<mixed>> $extraConfigs Key is the extension name, value is the config
* @param array<string, Definition> $extraDefinitions
*/
public function create(array $extraBundles, ?callable $routeConfiguration, array $extraConfigs, array $extraDefinitions): void
{
// clear cache directory for a fresh container
$filesystem = new Filesystem();
$filesystem->remove('var/cache/test');
$appKernel = new NelmioKernel($extraBundles, $routeConfiguration, $extraConfigs, $extraDefinitions);
$appKernel->boot();
$this->container = $appKernel->getContainer();
}
public function getContainer(): ContainerInterface
{
return $this->container;
}
}