PHP Class Sulu\Bundle\ContactBundle\Entity\EmailType

Inheritance: implements JsonSerializable
Mostrar archivo Open project: sulu/sulu Class Usage Examples

Public Methods

Method Description
__construct ( ) Constructor.
addEmail ( Email $emails ) : EmailType Add emails.
getEmails ( ) : Doctrine\Common\Collections\Collection Get emails.
getId ( ) : integer Get id.
getName ( ) : string Get name.
jsonSerialize ( ) : mixed (PHP 5 >= 5.4.0)
Specify data which should be serialized to JSON.
removeEmail ( Email $emails ) Remove emails.
setId ( integer $id ) To force id = 1 in load fixtures.
setName ( string $name ) : EmailType Set name.

Method Details

__construct() public method

Constructor.
public __construct ( )

addEmail() public method

Add emails.
public addEmail ( Email $emails ) : EmailType
$emails Email
return EmailType

getEmails() public method

Get emails.
public getEmails ( ) : Doctrine\Common\Collections\Collection
return Doctrine\Common\Collections\Collection

getId() public method

Get id.
public getId ( ) : integer
return integer

getName() public method

Get name.
public getName ( ) : string
return string

jsonSerialize() public method

(PHP 5 >= 5.4.0)
Specify data which should be serialized to JSON.
public jsonSerialize ( ) : mixed
return mixed data which can be serialized by json_encode, which is a value of any type other than a resource

removeEmail() public method

Remove emails.
public removeEmail ( Email $emails )
$emails Email

setId() public method

To force id = 1 in load fixtures.
public setId ( integer $id )
$id integer

setName() public method

Set name.
public setName ( string $name ) : EmailType
$name string
return EmailType