Add RecordCollection class to avoid multiple record_adapter fetching

This commit is contained in:
Benoît Burnichon
2016-04-22 12:22:27 +02:00
parent 23eff5fe28
commit f6c3672eeb
4 changed files with 350 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2016 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\Record;
interface PerDataboxRecordId
{
/**
* @param int $databoxId
* @return int[]
*/
public function getDataboxRecordIds($databoxId);
}