PHP Class Sulu\Bundle\ContactBundle\Entity\PhoneType

Inheritance: implements JsonSerializable
Show file Open project: sulu/sulu Class Usage Examples

Public Methods

Method Description
__construct ( ) Constructor.
addPhone ( Phone $phones ) : PhoneType Add phones.
getId ( ) : integer Get id.
getName ( ) : string Get name.
getPhones ( ) : Doctrine\Common\Collections\Collection Get phones.
jsonSerialize ( ) : mixed (PHP 5 >= 5.4.0)
Specify data which should be serialized to JSON.
removePhone ( Phone $phones ) Remove phones.
setId ( integer $id ) To force id = 1 in load fixtures.
setName ( string $name ) : PhoneType Set name.

Method Details

__construct() public method

Constructor.
public __construct ( )

addPhone() public method

Add phones.
public addPhone ( Phone $phones ) : PhoneType
$phones Phone
return PhoneType

getId() public method

Get id.
public getId ( ) : integer
return integer

getName() public method

Get name.
public getName ( ) : string
return string

getPhones() public method

Get phones.
public getPhones ( ) : Doctrine\Common\Collections\Collection
return Doctrine\Common\Collections\Collection

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

removePhone() public method

Remove phones.
public removePhone ( Phone $phones )
$phones Phone

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 ) : PhoneType
$name string
return PhoneType