EntryQuery
extends Message
in package
Table of Contents
- ALL_OPS = 0b11111111
- Bitmask for all the OP_ constants.
- F_API = 2 ** 30
- Set when the request came from the JSON API.
- F_VALIDATE = 2 ** 29
- Set on a request to validate the message.
- OP_ADD = 1
- OP_BATCH = 2 ** 6
- OP_CREATE = 2
- OP_DELETE = 2 ** 2
- OP_GET = 2 ** 3
- OP_LOCK = 2 ** 7
- OP_QUERY = 2 ** 4
- OP_UPDATE = 2 ** 5
- $after : int
- $afterDate : Carbon
- $amount : string
- $amountMax : string
- $currency : string
- $date : Carbon
- $dateEnding : Carbon
- $description : string
- $domain : EntityRef
- $entities : array<string|int, mixed>
- $filters : array<string|int, mixed>
- $limit : int
- $reference : Reference
- $reviewed : bool|null
- copy() : $this
- Selectively copy information from a data array.
- fromArray() : static
- Populate the message with data from an array of request data.
- fromRequest() : static
- Create a message from the request payload, bypassing some middleware.
- getOpFlags() : int
- query() : Builder
- Generate a query to retrieve the requested entries.
- run() : array<string|int, mixed>
- toOpFlags() : int
- Convert a method name to an operation bitmask.
- validate() : self
- Check the message for validity.
Constants
ALL_OPS
Bitmask for all the OP_ constants.
public
mixed
ALL_OPS
= 0b11111111
F_API
Set when the request came from the JSON API.
public
mixed
F_API
= 2 ** 30
F_VALIDATE
Set on a request to validate the message.
public
mixed
F_VALIDATE
= 2 ** 29
OP_ADD
public
mixed
OP_ADD
= 1
OP_BATCH
public
mixed
OP_BATCH
= 2 ** 6
OP_CREATE
public
mixed
OP_CREATE
= 2
OP_DELETE
public
mixed
OP_DELETE
= 2 ** 2
OP_GET
public
mixed
OP_GET
= 2 ** 3
OP_LOCK
public
mixed
OP_LOCK
= 2 ** 7
OP_QUERY
public
mixed
OP_QUERY
= 2 ** 4
OP_UPDATE
public
mixed
OP_UPDATE
= 2 ** 5
Properties
$after
public
int
$after
For pagination, ID of first record after this position
$afterDate
public
Carbon
$afterDate
For pagination, date of first record after this position
$amount
public
string
$amount
Minimum transaction amount.
$amountMax
public
string
$amountMax
Maximum transaction amount.
$currency
public
string
$currency
The transaction currency.
$date
public
Carbon
$date
The minimum transaction date.
$dateEnding
public
Carbon
$dateEnding
The maximum transaction date.
$description
public
string
$description
Transaction description to match to.
$domain
public
EntityRef
$domain
The ledger domain to query.
$entities
public
array<string|int, mixed>
$entities
= []
[future use]
$filters
public
array<string|int, mixed>
$filters
= []
Message objects that limit query results
$limit
public
int
$limit
The maximum number of entries to return.
$reference
public
Reference
$reference
A link to an external entity.
$reviewed
public
bool|null
$reviewed
Find reviewed/unreviewed/all states.
Methods
copy()
Selectively copy information from a data array.
public
copy(array<string|int, mixed> $data, int $opFlags) : $this
Parameters
- $data : array<string|int, mixed>
- $opFlags : int
Return values
$this —fromArray()
Populate the message with data from an array of request data.
public
static fromArray(array<string|int, mixed> $data[, int $opFlags = self::OP_ADD ]) : static
Parameters
- $data : array<string|int, mixed>
-
Data generated by the request.
- $opFlags : int = self::OP_ADD
-
Bitmask of the request operation (may include FM_VALIDATE)
Tags
Return values
static —Message initialized with relevant data.
fromRequest()
Create a message from the request payload, bypassing some middleware.
public
static fromRequest(Request $request, int $opFlags) : static
Parameters
- $request : Request
- $opFlags : int
Tags
Return values
static —getOpFlags()
public
getOpFlags() : int
Return values
int —query()
Generate a query to retrieve the requested entries.
public
query() : Builder
Tags
Return values
Builder —run()
public
run() : array<string|int, mixed>
Tags
Return values
array<string|int, mixed> —toOpFlags()
Convert a method name to an operation bitmask.
public
static toOpFlags(string $method[, array<string|int, mixed> $options = [] ]) : int
Parameters
- $method : string
-
The method name.
- $options : array<string|int, mixed> = []
-
Options are: add Bitmask of flags to add to the result. allowZero boolean, if not set an exception is thrown when there is no matching flag. disallow Bitmask of methods to ignore.
Tags
Return values
int —Operation bitmask, zero if not recognized or disallowed.
validate()
Check the message for validity.
public
validate([int|null $opFlags = null ]) : self
Parameters
- $opFlags : int|null = null
-
Operation bitmask.