PHP Class Scalr\Model\Entity\Account\User\UserSetting

Since: 5.4.0 (23.02.2015)
Author: Vitaliy Demidov ([email protected])
Inheritance: extends Scalr\Model\Entity\AbstractSettingEntity
Show file Open project: scalr/scalr Class Usage Examples

Public Properties

Property Type Description
$name string The name of the setting
$userId integer It references to the user.id column.
$value string The value of the setting

Public Methods

Method Description
__construct ( string $userId = null, string $name = null, string $value = null ) Constructor

Method Details

__construct() public method

Constructor
public __construct ( string $userId = null, string $name = null, string $value = null )
$userId string optional The identifier of the user
$name string optional The name of the setting
$value string optional The value of the setting

Property Details

$name public property

The name of the setting
public string $name
return string

$userId public property

It references to the user.id column.
public int $userId
return integer

$value public property

The value of the setting
public string $value
return string