11 lines
256 B
PHP
11 lines
256 B
PHP
<?php
|
|
|
|
namespace Ulmus\Event\Repository;
|
|
|
|
use Ulmus\EntityCollection;
|
|
use Ulmus\Repository\RepositoryInterface;
|
|
|
|
interface CollectionFromQueryDatasetInterface {
|
|
public function execute(RepositoryInterface $repository, array &$data) : void;
|
|
}
|