Legend of the Green Dragon

DebuglogArchive

DebuglogArchive.

Tags
ORM\Table

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

ORM\Entity

Table of Contents

$actor  : int
$date  : DateTime
$field  : string
$id  : int
$message  : string
$target  : int
$value  : float
getActor()  : int
Get the value of Actor.
getDate()  : DateTime
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 $actor
Tags
ORM\Column

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

$date

private DateTime $date = '0000-00-00 00:00:00'
Tags
ORM\Column

(name="date", type="datetime", nullable=false, options={"default": "0000-00-00 00:00:00"})

$field

private string $field
Tags
ORM\Column

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

$id

private int $id
Tags
ORM\Column

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

ORM\Id
ORM\GeneratedValue

(strategy="IDENTITY")

$message

private string $message
Tags
ORM\Column

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

$target

private int $target
Tags
ORM\Column

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

$value

private float $value = '0.00'
Tags
ORM\Column

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

Methods

getActor()

Get the value of Actor.

public getActor() : int
Return values
int

getDate()

Get the value of Date.

public getDate() : DateTime
Return values
DateTime

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 $date) : self
Parameters
$date : DateTime
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