Skip to content

Commit acb284f

Browse files
committed
Merge branch '3.3' into 3.4
* 3.3: fixed some deprecation messages fixed some deprecation messages fixed some deprecation messages fixed some deprecation messages [2.7][DX] Use constant message contextualisation for deprecations
2 parents b29d163 + d5ecb75 commit acb284f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

LdapClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace Symfony\Component\Ldap;
1313

14-
@trigger_error('The '.__NAMESPACE__.'\LdapClient class is deprecated since version 3.1 and will be removed in 4.0. Use the Ldap class directly instead.', E_USER_DEPRECATED);
14+
@trigger_error('The '.__NAMESPACE__.'\LdapClient class is deprecated since Symfony 3.1 and will be removed in 4.0. Use the Ldap class directly instead.', E_USER_DEPRECATED);
1515

1616
/**
1717
* @author Grégoire Pineau <[email protected]>
@@ -60,7 +60,7 @@ public function getEntryManager()
6060
*/
6161
public function find($dn, $query, $filter = '*')
6262
{
63-
@trigger_error('The "find" method is deprecated since version 3.1 and will be removed in 4.0. Use the "query" method instead.', E_USER_DEPRECATED);
63+
@trigger_error('The "find" method is deprecated since Symfony 3.1 and will be removed in 4.0. Use the "query" method instead.', E_USER_DEPRECATED);
6464

6565
$query = $this->ldap->query($dn, $query, array('filter' => $filter));
6666
$entries = $query->execute();

0 commit comments

Comments
 (0)