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