| Línea 167... |
Línea 167... |
| 167 |
* @return user the user instance.
|
167 |
* @return user the user instance.
|
| 168 |
*/
|
168 |
*/
|
| 169 |
public static function create(int $resourceid, int $userid, int $deploymentid, string $sourceid,
|
169 |
public static function create(int $resourceid, int $userid, int $deploymentid, string $sourceid,
|
| 170 |
string $lang, string $timezone, string $city = '',
|
170 |
string $lang, string $timezone, string $city = '',
|
| 171 |
string $country = '', string $institution = '', ?int $maildisplay = null, ?float $lastgrade = null,
|
171 |
string $country = '', string $institution = '', ?int $maildisplay = null, ?float $lastgrade = null,
|
| 172 |
?int $lastaccess = null, ?int $resourcelinkid = null, int $id = null): user {
|
172 |
?int $lastaccess = null, ?int $resourcelinkid = null, ?int $id = null): user {
|
| Línea 173... |
Línea 173... |
| 173 |
|
173 |
|
| 174 |
return new self($resourceid, $userid, $deploymentid, $sourceid, $lang, $city,
|
174 |
return new self($resourceid, $userid, $deploymentid, $sourceid, $lang, $city,
|
| 175 |
$country, $institution, $timezone, $maildisplay, $lastgrade, $lastaccess, $resourcelinkid, $id);
|
175 |
$country, $institution, $timezone, $maildisplay, $lastgrade, $lastaccess, $resourcelinkid, $id);
|