forked from leftypol/leftypol
UserPostQueries.php: add user post queries class
This commit is contained in:
parent
1d41ffbe4f
commit
71416afc75
2 changed files with 130 additions and 0 deletions
15
inc/Data/PageFetchResult.php
Normal file
15
inc/Data/PageFetchResult.php
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
namespace Vichan\Data;
|
||||
|
||||
|
||||
/**
|
||||
* A page of user posts.
|
||||
*/
|
||||
class PageFetchResult {
|
||||
/**
|
||||
* @var array[array] Posts grouped by board uri.
|
||||
*/
|
||||
public array $by_uri;
|
||||
public ?string $cursor_prev;
|
||||
public ?string $cursor_next;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue