Skip to content

Commit acc45b8

Browse files
Merge branch '4.3' into 4.4
* 4.3: Do not extend the new SF 4.3 ControllerEvent so we can make it final Backported return type violation bugfixes. [FrameworkBundle] Fix BrowserKit assertions to make them compatible with Panther
2 parents 604196b + d257dcd commit acc45b8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Encoder/EncoderAwareInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ interface EncoderAwareInterface
2222
* If the method returns null, the standard way to retrieve the encoder
2323
* will be used instead.
2424
*
25-
* @return string
25+
* @return string|null
2626
*/
2727
public function getEncoderName();
2828
}

User/User.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ public function getPassword()
7171
*/
7272
public function getSalt()
7373
{
74+
return null;
7475
}
7576

7677
/**

0 commit comments

Comments
 (0)