Legend of the Green Dragon

Faillog
in package

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\Repository\FaillogRepository")

Table of Contents

$acctid  : int|null
$date  : DateTimeInterface|null
$eventid  : int|null
$id  : string|null
$ip  : string|null
$post  : array<string|int, mixed>
__construct()  : mixed
Configure some default values.
getAcctid()  : int
Get the value of Acctid.
getDate()  : DateTime|DateTimeImmutable
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()  : array<string|int, mixed>
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|null $acctid = null
Tags
ORM\Column

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

$date

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

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

$eventid

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

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

ORM\Id
ORM\GeneratedValue

(strategy="IDENTITY")

$id

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

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

$ip

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

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

$post

private array<string|int, mixed> $post
Tags
ORM\Column

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

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|DateTimeImmutable
Return values
DateTime|DateTimeImmutable

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() : array<string|int, mixed>
Return values
array<string|int, mixed>

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