mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 11:33:17 +00:00
20 lines
282 B
PHP
20 lines
282 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Collection;
|
|
|
|
interface CollectionRepository
|
|
{
|
|
|
|
/**
|
|
* @return \collection[]
|
|
*/
|
|
public function findAll();
|
|
|
|
/**
|
|
* @param int $collectionId
|
|
* @return \collection|null
|
|
*/
|
|
public function find($collectionId);
|
|
|
|
}
|