C
Size: a a a
SP
SP
SP
setStatus
. Есть ли место для таких вещей в коде?SP
SP
SP
class Profile
{
public function __construct(
public string $name,
public string $dob,
public string $gender
) {}
}
$profile = new Profile(
name: $name,
dob: $dob,
gender: $gender
);
$user->updateProfile($profile);
SP
SP
SP