8000 Fixes twig bundle project root dir discovery by pounard · Pull Request #22570 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Fixes twig bundle project root dir discovery #22570

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixes TwigBundle unit tests
  • Loading branch information
pounard committed Apr 28, 2017
commit cd083699a8e7b8a3b4bfccda3081d5150299a407
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ private function createContainer()
$container = new ContainerBuilder(new ParameterBag(array(
'kernel.cache_dir' => __DIR__,
'kernel.root_dir' => __DIR__.'/Fixtures',
'kernel.project_dir' => __DIR__,
'kernel.charset' => 'UTF-8',
'kernel.debug' => false,
'kernel.bundles' => array(
Expand Down
0