init
This commit is contained in:
29
mysyde/common/interfaces/RepositoryListView.php
Normal file
29
mysyde/common/interfaces/RepositoryListView.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
namespace DynCom\mysyde\common\interfaces;
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: Bauer
|
||||
* Date: 25.07.2015
|
||||
* Time: 10:45
|
||||
*/
|
||||
interface RepositoryListView
|
||||
{
|
||||
|
||||
/**
|
||||
* @param array $criteria
|
||||
* @param int $offset
|
||||
* @param int $limit
|
||||
* @return mixed
|
||||
*/
|
||||
public function render(array $criteria, $offset = 0, $limit = 0);
|
||||
|
||||
/**
|
||||
* @param $filename
|
||||
* @param array $criteria
|
||||
* @param int $offset
|
||||
* @param int $limit
|
||||
* @return mixed
|
||||
*/
|
||||
public function renderToFilePath($filename, array $criteria, $offset = 0, $limit = 0);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user