Files
unirest-php/main/mashape/authentication/HeaderAuthentication.php
2012-10-10 16:45:55 -07:00

9 lines
184 B
PHP

<?php
require_once(dirname(__FILE__) . "/Authentication.php");
abstract class HeaderAuthentication implements Authentication {
public function handleParams() {
return null;
}
}
?>