radarrplexorganizrnginxsonarrdashboardserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpc
16 lines
210 B
16 lines
210 B
7 years ago
|
<?php
|
||
|
|
||
|
namespace Github\Api;
|
||
|
|
||
|
/**
|
||
|
* Api interface.
|
||
|
*
|
||
|
* @author Joseph Bielawski <stloyd@gmail.com>
|
||
|
*/
|
||
|
interface ApiInterface
|
||
|
{
|
||
|
public function getPerPage();
|
||
|
|
||
|
public function setPerPage($perPage);
|
||
|
}
|