Skip to content
This repository has been archived by the owner on Jan 31, 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 353573b commit 543aa17
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 15 deletions.
6 changes: 1 addition & 5 deletions src/ArrayObject/PhpReferenceCompatibility.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,7 @@
* are unable to unset multi-dimensional arrays because you
* need to fetch the properties / lists as references.
*/
abstract class PhpReferenceCompatibility implements
IteratorAggregate,
ArrayAccess,
Serializable,
Countable
abstract class PhpReferenceCompatibility implements IteratorAggregate, ArrayAccess, Serializable, Countable
{
/**
* Properties of the object have their normal functionality
Expand Down
4 changes: 1 addition & 3 deletions src/Hydrator/AbstractHydrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
use Zend\Stdlib\Hydrator\StrategyEnabledInterface;
use Zend\Stdlib\Hydrator\Strategy\StrategyInterface;

abstract class AbstractHydrator implements
HydratorInterface,
StrategyEnabledInterface
abstract class AbstractHydrator implements HydratorInterface, StrategyEnabledInterface
{
/**
* The list with strategies that this hydrator has.
Expand Down
4 changes: 1 addition & 3 deletions src/Hydrator/Aggregate/AggregateHydrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@
/**
* Aggregate hydrator that composes multiple hydrators via events
*/
class AggregateHydrator implements
HydratorInterface,
EventManagerAwareInterface
class AggregateHydrator implements HydratorInterface, EventManagerAwareInterface
{
const DEFAULT_PRIORITY = 1;

Expand Down
5 changes: 1 addition & 4 deletions src/PriorityQueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@
* "inner" iterator in the form of an SplPriorityQueue object for performing
* the actual iteration.
*/
class PriorityQueue implements
Countable,
IteratorAggregate,
Serializable
class PriorityQueue implements Countable, IteratorAggregate, Serializable
{
const EXTR_DATA = 0x00000001;
const EXTR_PRIORITY = 0x00000002;
Expand Down

0 comments on commit 543aa17

Please sign in to comment.