mirror of
https://github.com/KevinMidboe/rohnenedre.git
synced 2025-12-29 21:31:16 +00:00
12 lines
176 B
PHP
12 lines
176 B
PHP
<?php
|
|
|
|
interface AWeberOAuthAdapter {
|
|
|
|
public function request($method, $uri, $data = array());
|
|
public function getRequestToken($callbackUrl=false);
|
|
|
|
}
|
|
|
|
|
|
?>
|