diff --git a/src/ArrayObject/PhpReferenceCompatibility.php b/src/ArrayObject/PhpReferenceCompatibility.php index 8a4a4bc22..e25257c76 100644 --- a/src/ArrayObject/PhpReferenceCompatibility.php +++ b/src/ArrayObject/PhpReferenceCompatibility.php @@ -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 diff --git a/src/Hydrator/AbstractHydrator.php b/src/Hydrator/AbstractHydrator.php index da317ea08..4cb9a4356 100644 --- a/src/Hydrator/AbstractHydrator.php +++ b/src/Hydrator/AbstractHydrator.php @@ -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. diff --git a/src/Hydrator/Aggregate/AggregateHydrator.php b/src/Hydrator/Aggregate/AggregateHydrator.php index 456df5e0c..bdcf1eb0a 100644 --- a/src/Hydrator/Aggregate/AggregateHydrator.php +++ b/src/Hydrator/Aggregate/AggregateHydrator.php @@ -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; diff --git a/src/PriorityQueue.php b/src/PriorityQueue.php index f9b227020..bf6a624ac 100644 --- a/src/PriorityQueue.php +++ b/src/PriorityQueue.php @@ -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;