diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2016-01-25 10:56:46 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2016-01-25 10:56:46 +0100 |
commit | 46fcc0368cf3905f4b00feeaa4eeb4fe44e84558 (patch) | |
tree | 998b9dcb650f7b46e47739aacf5ae2472d117ed9 /Core | |
parent | 2ca30f1980ff9b653077c15a95b6fddaff7d07f7 (diff) | |
parent | b9254dec9796ea42fff0e24e285f92d3467bbb43 (diff) | |
download | symfony-security-46fcc0368cf3905f4b00feeaa4eeb4fe44e84558.zip symfony-security-46fcc0368cf3905f4b00feeaa4eeb4fe44e84558.tar.gz symfony-security-46fcc0368cf3905f4b00feeaa4eeb4fe44e84558.tar.bz2 |
Merge branch '2.7' into 2.8
* 2.7:
fixed test
[Request] Ignore invalid IP addresses sent by proxies
Throw for missing container extensions
[TwigBridge] add missing unit tests (AppVariable)
Able to load big xml files with DomCrawler
fixed typo
[Form] Fix constraints could be null if not set
[Finder] Check PHP version before applying a workaround for a PHP bug
fixed CS
add defaultNull to version
sort bundles in config:dump-reference command
Fixer findings.
[Translation][Writer] avoid calling setBackup if the dumper is not an instance of FileDumper.
[FrameworkBundle] Compute the kernel root hash only one time
Diffstat (limited to 'Core')
-rw-r--r-- | Core/Tests/Encoder/EncoderFactoryTest.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Core/Tests/Encoder/EncoderFactoryTest.php b/Core/Tests/Encoder/EncoderFactoryTest.php index 37cda72..21aaae4 100644 --- a/Core/Tests/Encoder/EncoderFactoryTest.php +++ b/Core/Tests/Encoder/EncoderFactoryTest.php @@ -139,15 +139,19 @@ class SomeUser implements UserInterface public function getRoles() { } + public function getPassword() { } + public function getSalt() { } + public function getUsername() { } + public function eraseCredentials() { } |