Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit 4bfc7e3

Browse files
committed
fix some docblocks
1 parent 40b6eda commit 4bfc7e3

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Acl/Dbal/MutableAclProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -801,12 +801,12 @@ private function updateNewFieldAceProperty($name, array $changes)
801801
}
802802

803803
/**
804-
* This process old entries changes on an ACE related property (classFieldAces, or objectFieldAces).
804+
* This processes old entries changes on an ACE related property (classFieldAces, or objectFieldAces).
805805
*
806806
* @param string $name
807-
* @param array $changes
807+
* @param array $changes
808808
*/
809-
private function updateOldFieldAceProperty($ane, array $changes)
809+
private function updateOldFieldAceProperty($name, array $changes)
810810
{
811811
$currentIds = array();
812812
foreach ($changes[1] as $field => $new) {

Core/Encoder/BCryptPasswordEncoder.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ public function __construct($cost)
6161
*
6262
* @return string The encoded password
6363
*
64+
* @throws BadCredentialsException when the given password is too long
65+
*
6466
* @link http://lxr.php.net/xref/PHP_5_5/ext/standard/password.c#111
6567
*/
6668
public function encodePassword($raw, $salt)

Core/Encoder/BasePasswordEncoder.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ protected function comparePasswords($password1, $password2)
8989
/**
9090
* Checks if the password is too long.
9191
*
92+
* @param string $password The password to check
93+
*
9294
* @return bool true if the password is too long, false otherwise
9395
*/
9496
protected function isPasswordTooLong($password)

0 commit comments

Comments
 (0)