Files
unirest-php/main/mashape/authentication/HeaderAuthentication.php

10 lines
185 B
PHP

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