We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 574cbb4 + 32c1726 commit e1dbf1bCopy full SHA for e1dbf1b
src/AppKernel.php
@@ -3,7 +3,6 @@
3
namespace Nyholm\BundleTest;
4
5
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
6
-use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
7
use Symfony\Component\Config\Loader\LoaderInterface;
8
use Symfony\Component\DependencyInjection\ContainerBuilder;
9
use Symfony\Component\HttpKernel\Kernel;
@@ -34,7 +33,7 @@ class AppKernel extends Kernel
34
33
*/
35
public function __construct($cachePrefix)
36
{
37
- parent::__construct('test', true);
+ parent::__construct($cachePrefix, true);
38
$this->cachePrefix = $cachePrefix;
39
$this->addBundle(FrameworkBundle::class);
40
$this->addConfigFile(__DIR__.'/config/framework.yml');
0 commit comments