8000 [SecurityBundle] Fix FirewallConfig nullable arguments by ogizanagi · Pull Request #20589 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[SecurityBundle] Fix FirewallConfig nullable arguments #20589

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 2 commits into from
Nov 24, 2016
Merged
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
[SecurityBundle] Remove FirewallContext mandatory FirewallConfig argu…
…ment deprecation
  • Loading branch information
ogizanagi committed Nov 23, 2016
commit 79ef474fdfd5805a8cbdc9a9b75b897a0a31cf55
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ class FirewallContext

public function __construct(array $listeners, ExceptionListener $exceptionListener = null, FirewallConfig $config = null)
{
if (null === $config) {
@trigger_error(sprintf('"%s()" expects an instance of "%s" as third argument since version 3.2 and will trigger an error in 4.0 if not provided.', __METHOD__, FirewallConfig::class), E_USER_DEPRECATED);
}

$this->listeners = $listeners;
$this->exceptionListener = $exceptionListener;
$this->config = $config;
Expand Down
0