Skip to content

Commit

Permalink
Ensure all sets implement IteratorAggregate
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdifabio committed Oct 30, 2017
1 parent c7cf41a commit 31fb001
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/AttributeDataSet.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace SnowIO\FredhopperDataModel;

final class AttributeDataSet
final class AttributeDataSet implements \IteratorAggregate
{
use SetTrait;

Expand Down
2 changes: 1 addition & 1 deletion src/CategoryDataSet.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace SnowIO\FredhopperDataModel;

final class CategoryDataSet
final class CategoryDataSet implements \IteratorAggregate
{
use SetTrait;

Expand Down
2 changes: 1 addition & 1 deletion src/CategoryIdSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
declare(strict_types=1);
namespace SnowIO\FredhopperDataModel;

final class CategoryIdSet
final class CategoryIdSet implements \IteratorAggregate
{
use SetTrait {
overlaps as private;
Expand Down
2 changes: 1 addition & 1 deletion src/ProductDataSet.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace SnowIO\FredhopperDataModel;

final class ProductDataSet
final class ProductDataSet implements \IteratorAggregate
{
use SetTrait;

Expand Down
2 changes: 1 addition & 1 deletion src/VariantDataSet.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace SnowIO\FredhopperDataModel;

final class VariantDataSet
final class VariantDataSet implements \IteratorAggregate
{
use SetTrait;

Expand Down

0 comments on commit 31fb001

Please sign in to comment.