mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-11-27 10:39:48 +09:00
16 lines
210 B
PHP
16 lines
210 B
PHP
<?php
|
|
|
|
namespace Github\Api;
|
|
|
|
/**
|
|
* Api interface.
|
|
*
|
|
* @author Joseph Bielawski <stloyd@gmail.com>
|
|
*/
|
|
interface ApiInterface
|
|
{
|
|
public function getPerPage();
|
|
|
|
public function setPerPage($perPage);
|
|
}
|