Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request zendframework/zendframework#4699 from neeckeloo/ad…
Browse files Browse the repository at this point in the history
…d-use-statements

Add use statements
  • Loading branch information
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Dn.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@

namespace Zend\Ldap;

use ArrayAccess;

/**
* Zend\Ldap\Dn provides an API for DN manipulation
*/
class Dn implements \ArrayAccess
class Dn implements ArrayAccess
{
const ATTR_CASEFOLD_NONE = 'none';
const ATTR_CASEFOLD_UPPER = 'upper';
Expand Down

0 comments on commit 27c0efc

Please sign in to comment.