init
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?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"]
|
||||
)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user