mirror of
https://github.com/jbcr/ezmigrationbundle.git
synced 2026-03-24 17:02:15 +01:00
20 lines
417 B
PHP
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;
|
|
}
|
|
}
|