Legend of the Green Dragon

Faillog

Faillog.

Tags
ORM\Table

(name="faillog", indexes={ @ORM\Index(name="date", columns={"date"}), @ORM\Index(name="acctid", columns={"acctid"}), @ORM\Index(name="ip", columns={"ip"}) } )

ORM\Entity

(repositoryClass="Lotgd\Core\EntityRepository\FaillogRepository")

Table of Contents

$acctid  : int
$date  : DateTime
$eventid  : int
$id  : string
$ip  : string
$post  : string
__construct()  : mixed
Configure some default values.
getAcctid()  : int
Get the value of Acctid.
getDate()  : DateTime
Get the value of Date.
getEventid()  : int
Get the value of Eventid.
getId()  : string
Get the value of Id.
getIp()  : string
Get the value of Ip.
getPost()  : string
Get the value of Post.
setAcctid()  : self
Set the value of Acctid.
setDate()  : self
Set the value of Date.
setEventid()  : self
Set the value of Eventid.
setId()  : self
Set the value of Id.
setIp()  : self
Set the value of Ip.
setPost()  : self
Set the value of Post.

Properties

$acctid

private int $acctid
Tags
ORM\Column

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

$date

private DateTime $date
Tags
ORM\Column

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

$eventid

private int $eventid
Tags
ORM\Column

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

ORM\Id
ORM\GeneratedValue

(strategy="IDENTITY")

$id

private string $id
Tags
ORM\Column

(name="id", type="string", length=32, nullable=false)

$ip

private string $ip
Tags
ORM\Column

(name="ip", type="string", length=40, nullable=false)

$post

private string $post
Tags
ORM\Column

(name="post", type="array", nullable=false)

Methods

__construct()

Configure some default values.

public __construct() : mixed
Return values
mixed

getAcctid()

Get the value of Acctid.

public getAcctid() : int
Return values
int

getDate()

Get the value of Date.

public getDate() : DateTime
Return values
DateTime

getEventid()

Get the value of Eventid.

public getEventid() : int
Return values
int

getId()

Get the value of Id.

public getId() : string
Return values
string

getIp()

Get the value of Ip.

public getIp() : string
Return values
string

getPost()

Get the value of Post.

public getPost() : string
Return values
string

setAcctid()

Set the value of Acctid.

public setAcctid(int $acctid) : self
Parameters
$acctid : int
Return values
self

setDate()

Set the value of Date.

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

setEventid()

Set the value of Eventid.

public setEventid(int $eventid) : self
Parameters
$eventid : int
Return values
self

setId()

Set the value of Id.

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

setIp()

Set the value of Ip.

public setIp(string $ip) : self
Parameters
$ip : string
Return values
self

setPost()

Set the value of Post.

public setPost(string $post) : self
Parameters
$post : string
Return values
self

Search results