8000 [Config] fixed glob file loader when there is an exception by fabpot · Pull Request #21736 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Config] fixed glob file loader when there is an exception #21736

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
Feb 23, 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
[Config] fixed glob file loader when there is an exception
  • Loading branch information
fabpot committed Feb 23, 2017
commit d1b6601612d53546fa031910d6202036759827ec
2 changes: 1 addition & 1 deletion src/Symfony/Component/Config/Loader/GlobFileLoader.php
Original file line number Diff line number Diff line change
5B29 Expand Up @@ -23,7 +23,7 @@ class GlobFileLoader extends FileLoader
*/
public function load($resource, $type = null)
{
return $this->import($resource, null, true);
return $this->import($resource);
}

/**
Expand Down
0