diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2016-01-25 10:56:57 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2016-01-25 10:56:57 +0100 |
commit | 55b04625341948f26d2733286aeb3021c41a3899 (patch) | |
tree | ea8d06bd8a2c3be2305c1a1bdbbe6b2e13d0a461 /Core | |
parent | c7b41202872f5b17022658c327894a2d30326d5e (diff) | |
parent | 46fcc0368cf3905f4b00feeaa4eeb4fe44e84558 (diff) | |
download | symfony-security-55b04625341948f26d2733286aeb3021c41a3899.zip symfony-security-55b04625341948f26d2733286aeb3021c41a3899.tar.gz symfony-security-55b04625341948f26d2733286aeb3021c41a3899.tar.bz2 |
Merge branch '2.8' into 3.0
* 2.8:
fixed test
[Request] Ignore invalid IP addresses sent by proxies
[EventDispatcher] TraceableEventDispatcher resets listener priorities
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.
Profiler CSS position conflicts with JS detection
[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() { } |