shlink/module/Core/src/Util/DoctrineBatchHelperInterface.php

11 lines
195 B
PHP
Raw Normal View History

2020-10-25 15:20:34 +03:00
<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Core\Util;
interface DoctrineBatchHelperInterface
{
public function wrapIterable(iterable $resultSet, int $batchSize): iterable;
}