Skip to content

Commit ba0a1f6

Browse files
Merge branch '3.4' into 4.3
* 3.4: Remove superfluous phpdoc tags
2 parents 171cac9 + aeca086 commit ba0a1f6

File tree

4 files changed

+0
-10
lines changed

4 files changed

+0
-10
lines changed

Adapter/AdapterInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ public function getConnection();
2828
*
2929
* @param string $dn
3030
* @param string $query
31-
* @param array $options
3231
*
3332
* @return QueryInterface
3433
*/

Adapter/EntryManagerInterface.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ interface EntryManagerInterface
3131
/**
3232
* Adds a new entry in the Ldap server.
3333
*
34-
* @param Entry $entry
35-
*
3634
* @throws NotBoundException
3735
* @throws LdapException
3836
*/
@@ -41,8 +39,6 @@ public function add(Entry $entry);
4139
/**
4240
* Updates an entry from the Ldap server.
4341
*
44-
* @param Entry $entry
45-
*
4642
* @throws NotBoundException
4743
* @throws LdapException
4844
*/
@@ -51,7 +47,6 @@ public function update(Entry $entry);
5147
/**
5248
* Renames an entry on the Ldap server.
5349
*
54-
* @param Entry $entry
5550
* @param string $newRdn
5651
* @param bool $removeOldRdn
5752
*/
@@ -60,8 +55,6 @@ public function rename(Entry $entry, $newRdn, $removeOldRdn = true);
6055
/**
6156
* Removes an entry from the Ldap server.
6257
*
63-
* @param Entry $entry
64-
*
6558
* @throws NotBoundException
6659
* @throws LdapException
6760
*/

Entry.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ public function getAttributes()
7676
* Sets a value for the given attribute.
7777
*
7878
* @param string $name
79-
* @param array $value
8079
*/
8180
public function setAttribute($name, array $value)
8281
{

LdapInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ public function bind($dn = null, $password = null);
4040
*
4141
* @param string $dn
4242
* @param string $query
43-
* @param array $options
4443
*
4544
* @return QueryInterface
4645
*/

0 commit comments

Comments
 (0)