Skip to content

Commit

Permalink
minor #17849 [Ldap] Fixed PHPDoc for the Ldap component's Entry class…
Browse files Browse the repository at this point in the history
… (csarrazi)

This PR was merged into the 3.1-dev branch.

Discussion
----------

[Ldap] Fixed PHPDoc for the Ldap component's Entry class

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets |
| License       | MIT
| Doc PR        |

Fixes the remaining comments from PR #17817

Commits
-------

a93ce04 Fixed PHPDoc for the Ldap component's Entry class
  • Loading branch information
fabpot committed Feb 20, 2016
2 parents ff87f30 + a93ce04 commit 0813705
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Symfony/Component/Ldap/Entry.php
Expand Up @@ -63,8 +63,8 @@ public function getAttributes()
/**
* Sets a value for the given attribute.
*
* @param $name
* @param array $value
* @param string $name
* @param array $value
*/
public function setAttribute($name, array $value)
{
Expand All @@ -74,7 +74,7 @@ public function setAttribute($name, array $value)
/**
* Removes a given attribute.
*
* @param $name
* @param string $name
*/
public function removeAttribute($name)
{
Expand Down

0 comments on commit 0813705

Please sign in to comment.