Legend of the Green Dragon

Debuglog
in package

Debuglog.

Tags
ORM\Table

(name="debuglog", indexes={ @ORM\Index(name="date", columns={"date"}), @ORM\Index(name="target", columns={"target"}), @ORM\Index(name="field", columns={"actor", "field"}) } )

ORM\Entity

(repositoryClass="Lotgd\Core\Repository\DebuglogRepository")

Table of Contents

$actor  : int|null
$date  : DateTimeInterface|null
$field  : string|null
$id  : int|null
$message  : string|null
$target  : int|null
$value  : float
__construct()  : mixed
getActor()  : int
Get the value of Actor.
getDate()  : DateTime|DateTimeImmutable
Get the value of Date.
getField()  : string
Get the value of Field.
getId()  : int
Get the value of Id.
getMessage()  : string
Get the value of Message.
getTarget()  : int
Get the value of Target.
getValue()  : float
Get the value of Value.
setActor()  : self
Set the value of Actor.
setDate()  : self
Set the value of Date.
setField()  : self
Set the value of Field.
setId()  : self
Set the value of Id.
setMessage()  : self
Set the value of Message.
setTarget()  : self
Set the value of Target.
setValue()  : self
Set the value of Value.

Properties

$actor

private int|null $actor = null
Tags
ORM\Column

(name="actor", type="integer", nullable=true, options={"unsigned": true})

$date

private DateTimeInterface|null $date = null
Tags
ORM\Column

(name="date", type="datetime")

$field

private string|null $field = null
Tags
ORM\Column

(name="field", type="string", length=20)

$id

private int|null $id = null
Tags
ORM\Column

(name="id", type="integer", options={"unsigned"=true})

ORM\Id
ORM\GeneratedValue

(strategy="IDENTITY")

$message

private string|null $message = null
Tags
ORM\Column

(name="message", type="text", length=65535)

$target

private int|null $target = null
Tags
ORM\Column

(name="target", type="integer", nullable=true, options={"unsigned": true})

$value

private float $value = 0.0
Tags
ORM\Column

(name="value", type="float", precision=9, scale=2, options={"default"="0.00"})

Methods

__construct()

public __construct() : mixed
Return values
mixed

getActor()

Get the value of Actor.

public getActor() : int
Return values
int

getDate()

Get the value of Date.

public getDate() : DateTime|DateTimeImmutable
Return values
DateTime|DateTimeImmutable

getField()

Get the value of Field.

public getField() : string
Return values
string

getId()

Get the value of Id.

public getId() : int
Return values
int

getMessage()

Get the value of Message.

public getMessage() : string
Return values
string

getTarget()

Get the value of Target.

public getTarget() : int
Return values
int

getValue()

Get the value of Value.

public getValue() : float
Return values
float

setActor()

Set the value of Actor.

public setActor(int $actor) : self
Parameters
$actor : int
Return values
self

setDate()

Set the value of Date.

public setDate(DateTime|DateTimeImmutable $date) : self
Parameters
$date : DateTime|DateTimeImmutable
Return values
self

setField()

Set the value of Field.

public setField(string $field) : self
Parameters
$field : string
Return values
self

setId()

Set the value of Id.

public setId(int $id) : self
Parameters
$id : int
Return values
self

setMessage()

Set the value of Message.

public setMessage(string $message) : self
Parameters
$message : string
Return values
self

setTarget()

Set the value of Target.

public setTarget(int $target) : self
Parameters
$target : int
Return values
self

setValue()

Set the value of Value.

public setValue(float $value) : self
Parameters
$value : float
Return values
self

Search results