Code standards
This commit is contained in:
parent
0de9ae913b
commit
d128b723c0
2 changed files with 8 additions and 8 deletions
|
@ -40,14 +40,14 @@ class Ids extends ContactEndpoint
|
||||||
$cursor = filter_input(INPUT_GET, 'cursor' , FILTER_VALIDATE_INT, ['options' => ['default' => -1]]);
|
$cursor = filter_input(INPUT_GET, 'cursor' , FILTER_VALIDATE_INT, ['options' => ['default' => -1]]);
|
||||||
$stringify_ids = filter_input(INPUT_GET, 'stringify_ids', FILTER_VALIDATE_BOOLEAN, ['options' => ['default' => false]]);
|
$stringify_ids = filter_input(INPUT_GET, 'stringify_ids', FILTER_VALIDATE_BOOLEAN, ['options' => ['default' => false]]);
|
||||||
$count = filter_input(INPUT_GET, 'count' , FILTER_VALIDATE_INT, ['options' => [
|
$count = filter_input(INPUT_GET, 'count' , FILTER_VALIDATE_INT, ['options' => [
|
||||||
'default' => self::DEFAULT_COUNT,
|
'default' => self::DEFAULT_COUNT,
|
||||||
'min_range' => 1,
|
'min_range' => 1,
|
||||||
'max_range' => self::MAX_COUNT,
|
'max_range' => self::MAX_COUNT,
|
||||||
]]);
|
]]);
|
||||||
// Friendica-specific
|
// Friendica-specific
|
||||||
$since_id = filter_input(INPUT_GET, 'since_id' , FILTER_VALIDATE_INT);
|
$since_id = filter_input(INPUT_GET, 'since_id', FILTER_VALIDATE_INT);
|
||||||
$max_id = filter_input(INPUT_GET, 'max_id' , FILTER_VALIDATE_INT);
|
$max_id = filter_input(INPUT_GET, 'max_id' , FILTER_VALIDATE_INT);
|
||||||
$min_id = filter_input(INPUT_GET, 'min_id' , FILTER_VALIDATE_INT);
|
$min_id = filter_input(INPUT_GET, 'min_id' , FILTER_VALIDATE_INT);
|
||||||
|
|
||||||
$params = ['order' => ['cid' => true], 'limit' => $count];
|
$params = ['order' => ['cid' => true], 'limit' => $count];
|
||||||
|
|
||||||
|
|
|
@ -41,14 +41,14 @@ class Lists extends ContactEndpoint
|
||||||
$skip_status = filter_input(INPUT_GET, 'skip_status' , FILTER_VALIDATE_BOOLEAN, ['options' => ['default' => false]]);
|
$skip_status = filter_input(INPUT_GET, 'skip_status' , FILTER_VALIDATE_BOOLEAN, ['options' => ['default' => false]]);
|
||||||
$include_user_entities = filter_input(INPUT_GET, 'include_user_entities', FILTER_VALIDATE_BOOLEAN, ['options' => ['default' => false]]);
|
$include_user_entities = filter_input(INPUT_GET, 'include_user_entities', FILTER_VALIDATE_BOOLEAN, ['options' => ['default' => false]]);
|
||||||
$count = filter_input(INPUT_GET, 'count' , FILTER_VALIDATE_INT, ['options' => [
|
$count = filter_input(INPUT_GET, 'count' , FILTER_VALIDATE_INT, ['options' => [
|
||||||
'default' => self::DEFAULT_COUNT,
|
'default' => self::DEFAULT_COUNT,
|
||||||
'min_range' => 1,
|
'min_range' => 1,
|
||||||
'max_range' => self::MAX_COUNT,
|
'max_range' => self::MAX_COUNT,
|
||||||
]]);
|
]]);
|
||||||
// Friendica-specific
|
// Friendica-specific
|
||||||
$since_id = filter_input(INPUT_GET, 'since_id', FILTER_VALIDATE_INT);
|
$since_id = filter_input(INPUT_GET, 'since_id', FILTER_VALIDATE_INT);
|
||||||
$max_id = filter_input(INPUT_GET, 'max_id' , FILTER_VALIDATE_INT);
|
$max_id = filter_input(INPUT_GET, 'max_id' , FILTER_VALIDATE_INT);
|
||||||
$min_id = filter_input(INPUT_GET, 'min_id' , FILTER_VALIDATE_INT);
|
$min_id = filter_input(INPUT_GET, 'min_id' , FILTER_VALIDATE_INT);
|
||||||
|
|
||||||
$params = ['order' => ['cid' => true], 'limit' => $count];
|
$params = ['order' => ['cid' => true], 'limit' => $count];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue