yet another github api refactoring
[pharext/pharext.org] / app / Github / API / Callback.php
1 <?php
2
3 namespace app\Github\API;
4
5 use app\Github\API;
6
7 abstract class Callback
8 {
9 protected $api;
10
11 abstract function __invoke($json, $links = null);
12
13 function __construct(API $api) {
14 $this->api = $api;
15 }
16 }