mirror of
https://github.com/KevinMidboe/rohnenedre.git
synced 2025-12-08 20:39:02 +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);
|
|
|
|
}
|
|
|
|
|
|
?>
|