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

Commit

Permalink
Resolved merge conflicts from commit 83ba3cf
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored and Mike Willbanks committed Jun 20, 2013
1 parent 66e949a commit de54ea2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 20 deletions.
4 changes: 1 addition & 3 deletions src/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
/**
* Zend\Ldap\Collection wraps a list of LDAP entries.
*/
class Collection implements
Iterator,
Countable
class Collection implements Iterator, Countable
{
/**
* Iterator
Expand Down
4 changes: 1 addition & 3 deletions src/Collection/DefaultIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@
* Zend\Ldap\Collection\DefaultIterator is the default collection iterator implementation
* using ext/ldap
*/
class DefaultIterator implements
Iterator,
Countable
class DefaultIterator implements Iterator, Countable
{
const ATTRIBUTE_TO_LOWER = 1;
const ATTRIBUTE_TO_UPPER = 2;
Expand Down
4 changes: 1 addition & 3 deletions src/Node.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@
/**
* Zend\Ldap\Node provides an object oriented view into a LDAP node.
*/
class Node extends Node\AbstractNode implements
Iterator,
RecursiveIterator
class Node extends Node\AbstractNode implements Iterator, RecursiveIterator
{
/**
* Holds the node's new Dn if node is renamed.
Expand Down
4 changes: 1 addition & 3 deletions src/Node/AbstractNode.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@
/**
* This class provides a base implementation for LDAP nodes
*/
abstract class AbstractNode implements
ArrayAccess,
Countable
abstract class AbstractNode implements ArrayAccess, Countable
{
protected static $systemAttributes = array('createtimestamp', 'creatorsname',
'entrycsn', 'entrydn', 'entryuuid', 'hassubordinates', 'modifiersname',
Expand Down
6 changes: 1 addition & 5 deletions src/Node/ChildrenIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,7 @@
/**
* Zend\Ldap\Node\ChildrenIterator provides an iterator to a collection of children nodes.
*/
class ChildrenIterator implements
Iterator,
Countable,
RecursiveIterator,
ArrayAccess
class ChildrenIterator implements Iterator, Countable, RecursiveIterator, ArrayAccess
{
/**
* An array of Zend\Ldap\Node objects
Expand Down
4 changes: 1 addition & 3 deletions src/Node/Schema/AbstractItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@
* This class provides a base implementation for managing schema
* items like objectClass and attributeType.
*/
abstract class AbstractItem implements
ArrayAccess,
Countable
abstract class AbstractItem implements ArrayAccess, Countable
{
/**
* The underlying data
Expand Down

0 comments on commit de54ea2

Please sign in to comment.