Files
ezmigrationbundle/Core/Matcher/RepositoryMatcher.php
2017-02-11 10:46:03 +00:00

20 lines
417 B
PHP

<?php
namespace Kaliop\eZMigrationBundle\Core\Matcher;
use eZ\Publish\API\Repository\Repository;
abstract class RepositoryMatcher extends AbstractMatcher
{
protected $repository;
/**
* @param Repository $repository
* @todo inject the services needed, not the whole repository
*/
public function __construct(Repository $repository)
{
$this->repository = $repository;
}
}