TypeDatetimeFormatDate extends AbstractFieldGenerator implements FieldGeneratorInterface

FinalYes

Generate data for type=datetime fields with format=date

Internal
Attributes
#[Autoconfigure]
$public: true

Table of Contents

Interfaces

FieldGeneratorInterface
Interface for field value generators

Properties

$matchArray  : array<string|int, mixed>

Methods

__construct()  : mixed
generate()  : int
Returns the generated value to be inserted into DB for this field
match()  : bool
General match implementation checks input array against $this->matchArray.
checkMatchArray()  : bool
Recursive compare of $data with $matchArray.

Properties

$matchArray

protected array<string|int, mixed> $matchArray = ['fieldConfig' => ['config' => ['type' => 'datetime', 'format' => 'date']]]

If all of these settings are identical to given values, match is true

Methods

generate()

Returns the generated value to be inserted into DB for this field

public generate(array<string|int, mixed> $data) : int
Parameters
$data : array<string|int, mixed>
Return values
int

match()

General match implementation checks input array against $this->matchArray.

public match(array<string|int, mixed> $data) : bool

If all keys and values of matchArray exist in $data and are identical, this generator matches.

Parameters
$data : array<string|int, mixed>
Return values
bool

checkMatchArray()

Recursive compare of $data with $matchArray.

protected checkMatchArray(array<string|int, mixed> $data, array<string|int, mixed> $matchArray) : bool
Parameters
$data : array<string|int, mixed>

Given data

$matchArray : array<string|int, mixed>

Part to mach against

Return values
bool

        
On this page

Search results