8000 Guard minor tweaks by weaverryan · Pull Request #15920 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Guard minor tweaks #15920

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
Sep 27, 2015
Merged
Show file tree
Hide file tree
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
Next Next commit
Minor tweaks - lowering the required security-http requirement and nu…
…lling out a test field
  • Loading branch information
weaverryan committed Sep 26, 2015
commit da4758a2af0577fae0d298af472da15d3ac63fb2
Original file line number Diff line number Diff line change
Expand Up @@ -218,5 +218,6 @@ protected function tearDown()
$this->event = null;
$this->logger = null;
$this->request = null;
$this->rememberMeServices = null;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't we simply combine this by changing all =s?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is more readable than when combined though.

}
}
2 changes: 1 addition & 1 deletion src/Symfony/Component/Security/Guard/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"require": {
"php": ">=5.3.9",
"symfony/security-core": "~2.8|~3.0.0",
"symfony/security-http": "~2.8|~3.0.0"
"symfony/security-http": "~2.7|~3.0.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~2.8|~3.0.0",
Expand Down
0