for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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;
}