Working on that API scaffolding

This commit is contained in:
Josh Sherman 2013-12-17 23:34:39 -05:00
parent 706ebca0cf
commit 7b18541a61
2 changed files with 26 additions and 0 deletions

15
classes/APIv1.php Normal file
View file

@ -0,0 +1,15 @@
<?php
class APIv1 extends Module
{
protected $request_method = 'GET';
public function __construct()
{
// Checks the request method
// Checks the key
}
}
?>