Skip to content

Commit

Permalink
Refactor: improve variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Boy Baukema committed Jun 20, 2016
1 parent 17a3056 commit 15a8ab1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ public function removeByIdentityId(IdentityId $identityId)
}

/**
* @param string[] $sraaList
* @param string[] $nameIds
* @return void
*/
public function removeByNameIds($sraaList)
public function removeByNameIds($nameIds)
{
$raCandidates = $this->findByNameIds($sraaList);
$raCandidates = $this->findByNameIds($nameIds);

$em = $this->getEntityManager();
foreach ($raCandidates as $raCandidate) {
Expand Down

0 comments on commit 15a8ab1

Please sign in to comment.