Newscoop\Entity\UserAttribute::__construct PHP Метод

__construct() публичный Метод

public __construct ( string $name, string $value, User $user )
$name string
$value string
$user User
    public function __construct($name, $value, User $user)
    {
        $this->attribute = (string) $name;
        $this->value = $value;
        $this->user = $user;
    }