24 lines
436 B
PHP
24 lines
436 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Lucent\Query;
|
||
|
|
|
||
|
|
final class QueryOptions
|
||
|
|
{
|
||
|
|
|
||
|
|
|
||
|
|
public function __construct(
|
||
|
|
public int $limit = 20,
|
||
|
|
public int $skip = 0,
|
||
|
|
public int $childrenDepth = -1,
|
||
|
|
public int $parentsDepth = -1,
|
||
|
|
public int $childrenLimit = -1,
|
||
|
|
public int $parentsLimit = -1,
|
||
|
|
public array $sort = [],
|
||
|
|
public array $status = ["published", "draft"]
|
||
|
|
)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|