8000 [FrameworkBundle] allow to reference files directly from kernel.root_dir by fabpot · Pull Request #21231 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[FrameworkBundle] allow to reference files directly from kernel.root_dir #21231

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

Merged
merged 1 commit into from
Jan 10, 2017
Merged
Changes from all commits
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
[FrameworkBundle] allowed to reference files directly from kernel.roo…
…t_dir
  • Loading branch information
fabpot committed Jan 10, 2017
commit 80b61e9127139ac871576529f2419e9e65cbd04a
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@
<service id="file_locator" class="Symfony\Component\HttpKernel\Config\FileLocator">
<argument type="service" id="kernel" />
<argument>%kernel.root_dir%/Resources</argument>
<argument type="collection">
<argument>%kernel.root_dir%</argument>
</argument>
</service>

<service id="uri_signer" class="Symfony\Component\HttpKernel\UriSigner">
Expand Down
0