@@ -226,6 +226,7 @@ discard block |
||
226 | 226 | */ |
227 | 227 | /** |
228 | 228 | * Send a GET request |
229 | + * @param string $url |
|
229 | 230 | */ |
230 | 231 | public static function get($url, $headers = array(), $options = array()) { |
231 | 232 | return self::request($url, $headers, null, self::GET, $options); |
@@ -263,12 +264,14 @@ discard block |
||
263 | 264 | */ |
264 | 265 | /** |
265 | 266 | * Send a POST request |
267 | + * @param string $url |
|
266 | 268 | */ |
267 | 269 | public static function post($url, $headers = array(), $data = array(), $options = array()) { |
268 | 270 | return self::request($url, $headers, $data, self::POST, $options); |
269 | 271 | } |
270 | 272 | /** |
271 | 273 | * Send a PUT request |
274 | + * @param string $url |
|
272 | 275 | */ |
273 | 276 | public static function put($url, $headers = array(), $data = array(), $options = array()) { |
274 | 277 | return self::request($url, $headers, $data, self::PUT, $options); |
@@ -357,7 +357,7 @@ |
||
357 | 357 | * @param int $delta |
358 | 358 | * @param int $numpoints |
359 | 359 | * @param bool $firsttime |
360 | - * @return int New bias |
|
360 | + * @return double New bias |
|
361 | 361 | */ |
362 | 362 | protected static function adapt($delta, $numpoints, $firsttime) { |
363 | 363 | # function adapt(delta,numpoints,firsttime): |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | * |
250 | 250 | * Returns false if $base is not absolute, otherwise an IRI. |
251 | 251 | * |
252 | - * @param IRI|string $base (Absolute) Base IRI |
|
252 | + * @param string $base (Absolute) Base IRI |
|
253 | 253 | * @param IRI|string $relative Relative IRI |
254 | 254 | * @return IRI|false |
255 | 255 | */ |
@@ -984,6 +984,7 @@ discard block |
||
984 | 984 | * Convert an IRI to a URI (or parts thereof) |
985 | 985 | * |
986 | 986 | * @param string|bool IRI to convert (or false from {@see get_iri}) |
987 | + * @param false|string $string |
|
987 | 988 | * @return string|false URI if IRI is valid, false otherwise. |
988 | 989 | */ |
989 | 990 | protected function to_uri($string) { |
@@ -232,7 +232,7 @@ |
||
232 | 232 | * |
233 | 233 | * @param array $request Request data (same form as {@see request_multiple}) |
234 | 234 | * @param boolean $merge_options Should we merge options as well? |
235 | - * @return array Request data |
|
235 | + * @return string Request data |
|
236 | 236 | */ |
237 | 237 | protected function merge_request($request, $merge_options = true) { |
238 | 238 | if ($this->url !== null) { |
@@ -29,7 +29,6 @@ |
||
29 | 29 | return $this->ancestor; |
30 | 30 | } |
31 | 31 | /** |
32 | - * @param Location $location |
|
33 | 32 | */ |
34 | 33 | public function setAncestor($ancestor) |
35 | 34 | { |
@@ -1,59 +1,59 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | class SendJodel extends AbstractRequest { |
4 | - /** |
|
5 | - * @var Location |
|
6 | - */ |
|
7 | - public $location; |
|
8 | - /** |
|
9 | - * @return Location |
|
10 | - */ |
|
11 | - public function getLocation() |
|
12 | - { |
|
13 | - return $this->location; |
|
14 | - } |
|
15 | - /** |
|
16 | - * @param Location $location |
|
17 | - */ |
|
18 | - public function setLocation($location) |
|
19 | - { |
|
20 | - $this->location = $location; |
|
21 | - } |
|
4 | + /** |
|
5 | + * @var Location |
|
6 | + */ |
|
7 | + public $location; |
|
8 | + /** |
|
9 | + * @return Location |
|
10 | + */ |
|
11 | + public function getLocation() |
|
12 | + { |
|
13 | + return $this->location; |
|
14 | + } |
|
15 | + /** |
|
16 | + * @param Location $location |
|
17 | + */ |
|
18 | + public function setLocation($location) |
|
19 | + { |
|
20 | + $this->location = $location; |
|
21 | + } |
|
22 | 22 | |
23 | - public $ancestor; |
|
24 | - /** |
|
25 | - * @return Location |
|
26 | - */ |
|
27 | - public function getAncestor() |
|
28 | - { |
|
29 | - return $this->ancestor; |
|
30 | - } |
|
31 | - /** |
|
32 | - * @param Location $location |
|
33 | - */ |
|
34 | - public function setAncestor($ancestor) |
|
35 | - { |
|
36 | - if(isset($ancestor) && $ancestor != "") |
|
37 | - { |
|
23 | + public $ancestor; |
|
24 | + /** |
|
25 | + * @return Location |
|
26 | + */ |
|
27 | + public function getAncestor() |
|
28 | + { |
|
29 | + return $this->ancestor; |
|
30 | + } |
|
31 | + /** |
|
32 | + * @param Location $location |
|
33 | + */ |
|
34 | + public function setAncestor($ancestor) |
|
35 | + { |
|
36 | + if(isset($ancestor) && $ancestor != "") |
|
37 | + { |
|
38 | 38 | $this->ancestor = $ancestor; |
39 | 39 | } |
40 | - } |
|
40 | + } |
|
41 | 41 | |
42 | - function getApiEndPoint() |
|
43 | - { |
|
44 | - return '/v3/posts/'; |
|
45 | - } |
|
46 | - function getPayload() |
|
47 | - { |
|
48 | - return array( |
|
42 | + function getApiEndPoint() |
|
43 | + { |
|
44 | + return '/v3/posts/'; |
|
45 | + } |
|
46 | + function getPayload() |
|
47 | + { |
|
48 | + return array( |
|
49 | 49 | "ancestor" => $this->getAncestor(), |
50 | 50 | "color" => "9EC41C", |
51 | - "location" => $this->getLocation()->toArray(), |
|
52 | - "message" => $_POST['message'], |
|
53 | - ); |
|
54 | - } |
|
55 | - function getMethod() |
|
56 | - { |
|
57 | - return 'POST'; |
|
58 | - } |
|
51 | + "location" => $this->getLocation()->toArray(), |
|
52 | + "message" => $_POST['message'], |
|
53 | + ); |
|
54 | + } |
|
55 | + function getMethod() |
|
56 | + { |
|
57 | + return 'POST'; |
|
58 | + } |
|
59 | 59 | } |
@@ -40,6 +40,6 @@ |
||
40 | 40 | ) DEFAULT CHARSET=utf8"; |
41 | 41 | if(!$db->query($query)) |
42 | 42 | { |
43 | - throw new Exception($db->error($mysqli)); |
|
43 | + throw new Exception($db->error($mysqli)); |
|
44 | 44 | } |
45 | 45 |
@@ -3,18 +3,18 @@ |
||
3 | 3 | |
4 | 4 | class GetKarma extends AbstractRequest { |
5 | 5 | |
6 | - function getApiEndPoint() |
|
7 | - { |
|
8 | - return '/v2/users/karma'; |
|
9 | - } |
|
10 | - function getPayload() |
|
11 | - { |
|
12 | - return array( |
|
13 | - ); |
|
14 | - } |
|
15 | - function getMethod() |
|
16 | - { |
|
17 | - return 'GET'; |
|
18 | - } |
|
6 | + function getApiEndPoint() |
|
7 | + { |
|
8 | + return '/v2/users/karma'; |
|
9 | + } |
|
10 | + function getPayload() |
|
11 | + { |
|
12 | + return array( |
|
13 | + ); |
|
14 | + } |
|
15 | + function getMethod() |
|
16 | + { |
|
17 | + return 'GET'; |
|
18 | + } |
|
19 | 19 | } |
20 | 20 |
@@ -3,19 +3,19 @@ |
||
3 | 3 | |
4 | 4 | class Upvote extends AbstractRequest { |
5 | 5 | |
6 | - function getApiEndPoint() |
|
7 | - { |
|
8 | - return '/v2/posts/' . $_GET['postID'] . '/upvote'; |
|
9 | - } |
|
10 | - function getPayload() |
|
11 | - { |
|
12 | - return array( |
|
6 | + function getApiEndPoint() |
|
7 | + { |
|
8 | + return '/v2/posts/' . $_GET['postID'] . '/upvote'; |
|
9 | + } |
|
10 | + function getPayload() |
|
11 | + { |
|
12 | + return array( |
|
13 | 13 | "reason_code" => -1, |
14 | - ); |
|
15 | - } |
|
16 | - function getMethod() |
|
17 | - { |
|
18 | - return 'PUT'; |
|
19 | - } |
|
14 | + ); |
|
15 | + } |
|
16 | + function getMethod() |
|
17 | + { |
|
18 | + return 'PUT'; |
|
19 | + } |
|
20 | 20 | } |
21 | 21 |
@@ -3,18 +3,18 @@ |
||
3 | 3 | |
4 | 4 | class GetPostDetails extends AbstractRequest { |
5 | 5 | |
6 | - function getApiEndPoint() |
|
7 | - { |
|
8 | - return '/v2/posts/' . $_GET['postID']; |
|
9 | - } |
|
10 | - function getPayload() |
|
11 | - { |
|
12 | - return array( |
|
13 | - ); |
|
14 | - } |
|
15 | - function getMethod() |
|
16 | - { |
|
17 | - return 'GET'; |
|
18 | - } |
|
6 | + function getApiEndPoint() |
|
7 | + { |
|
8 | + return '/v2/posts/' . $_GET['postID']; |
|
9 | + } |
|
10 | + function getPayload() |
|
11 | + { |
|
12 | + return array( |
|
13 | + ); |
|
14 | + } |
|
15 | + function getMethod() |
|
16 | + { |
|
17 | + return 'GET'; |
|
18 | + } |
|
19 | 19 | } |
20 | 20 |