Skip to content

Commit

Permalink
Merge pull request #21 from inspiran/master
Browse files Browse the repository at this point in the history
Added missing findAll method
  • Loading branch information
inspiran committed Apr 9, 2014
2 parents 4153de8 + b1062bd commit 762d617
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/Vespolina/Brand/Manager/BrandManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
use Vespolina\Brand\Gateway\BrandGatewayInterface;
use Vespolina\Entity\Brand\BrandInterface;

use Vespolina\Specification\SpecificationInterface;


class BrandManager
{
protected $gateway;
Expand All @@ -14,6 +17,11 @@ public function __construct(BrandGatewayInterface $gateway)
$this->gateway = $gateway;
}

public function findAll(SpecificationInterface $specification)
{
return $this->gateway->findAll($specification);
}

/**
* @inheritdoc
*/
Expand Down

0 comments on commit 762d617

Please sign in to comment.