Documentation

Client
in package

Tags
ORM\Entity

(repositoryClass=ClientRepository::class)

Table of Contents

$bonusPoints  : mixed
$comments  : mixed
$company  : mixed
$contactPersons  : mixed
$dueDate  : mixed
$email  : mixed
$fax  : mixed
$id  : mixed
$orders  : mixed
$phoneNumber  : mixed
$secondPhoneNumber  : mixed
$www  : mixed
__construct()  : mixed
__toString()  : mixed
addContactPerson()  : self
addOrder()  : self
getBonusPoints()  : string|null
getComments()  : string|null
getCompany()  : ArrayCollection|null
getContactPersons()  : Collection|array<string|int, ClientContactPerson>
getDueDate()  : int|null
getEmail()  : string|null
getFax()  : string|null
getId()  : int|null
getOrders()  : Collection|array<string|int, Order>
getPhoneNumber()  : string|null
getSecondPhoneNumber()  : string|null
getWww()  : string|null
removeContactPerson()  : self
removeOrder()  : self
setBonusPoints()  : self
setComments()  : self
setCompany()  : mixed
setDueDate()  : self
setEmail()  : self
setFax()  : self
setPhoneNumber()  : self
setSecondPhoneNumber()  : self
setWww()  : self

Properties

$bonusPoints

private mixed $bonusPoints
Tags
ORM\Column

(type="string", length=255, nullable=true)

$comments

private mixed $comments
Tags
ORM\Column

(type="text", length=255)

$company

private mixed $company
Tags
ORM\ManyToOne

(targetEntity="App\Entity\Company", cascade={"persist", "remove"})

ORM\JoinColumn

(name="company_id", referencedColumnName="id")

$contactPersons

private mixed $contactPersons
Tags
ORM\OneToMany

(targetEntity=ClientContactPerson::class, mappedBy="client")

$dueDate

private mixed $dueDate
Tags
ORM\Column

(type="integer", length=255)

$email

private mixed $email
Tags
ORM\Column

(type="string", length=255, nullable=true)

$fax

private mixed $fax
Tags
ORM\Column

(type="string", length=255, nullable=true)

$id

private mixed $id
Tags
ORM\Id
ORM\GeneratedValue
ORM\Column

(type="integer")

$orders

private mixed $orders
Tags
ORM\OneToMany

(targetEntity=Order::class, mappedBy="client")

$phoneNumber

private mixed $phoneNumber
Tags
ORM\Column

(type="integer", length=9, nullable=true)

$secondPhoneNumber

private mixed $secondPhoneNumber
Tags
ORM\Column

(type="integer", length=9, nullable=true)

$www

private mixed $www
Tags
ORM\Column

(type="string", length=255, nullable=true)

Methods

__construct()

public __construct() : mixed
Return values
mixed

__toString()

public __toString() : mixed
Return values
mixed

addOrder()

public addOrder(Order $order) : self
Parameters
$order : Order
Return values
self

getBonusPoints()

public getBonusPoints() : string|null
Return values
string|null

getComments()

public getComments() : string|null
Return values
string|null

getCompany()

public getCompany() : ArrayCollection|null
Return values
ArrayCollection|null

getDueDate()

public getDueDate() : int|null
Return values
int|null

getEmail()

public getEmail() : string|null
Return values
string|null

getFax()

public getFax() : string|null
Return values
string|null

getId()

public getId() : int|null
Return values
int|null

getOrders()

public getOrders() : Collection|array<string|int, Order>
Return values
Collection|array<string|int, Order>

getPhoneNumber()

public getPhoneNumber() : string|null
Return values
string|null

getSecondPhoneNumber()

public getSecondPhoneNumber() : string|null
Return values
string|null

getWww()

public getWww() : string|null
Return values
string|null

removeOrder()

public removeOrder(Order $order) : self
Parameters
$order : Order
Return values
self

setBonusPoints()

public setBonusPoints(string $bonusPoint) : self
Parameters
$bonusPoint : string
Return values
self

setComments()

public setComments(string $comments) : self
Parameters
$comments : string
Return values
self

setCompany()

public setCompany([Company $company = null ]) : mixed
Parameters
$company : Company = null
Return values
mixed

setDueDate()

public setDueDate(int $dueDate) : self
Parameters
$dueDate : int
Return values
self

setEmail()

public setEmail(string $email) : self
Parameters
$email : string
Return values
self

setFax()

public setFax(string $city) : self
Parameters
$city : string
Return values
self

setPhoneNumber()

public setPhoneNumber(string $phoneNumber) : self
Parameters
$phoneNumber : string
Return values
self

setSecondPhoneNumber()

public setSecondPhoneNumber(string $secondPhoneNumber) : self
Parameters
$secondPhoneNumber : string
Return values
self

setWww()

public setWww(string $www) : self
Parameters
$www : string
Return values
self

Search results