Lines Matching refs:user_id
32 private int $user_id; variable in Fisharebest\\Webtrees\\User
44 * @param int $user_id
49 public function __construct(int $user_id, string $user_name, string $real_name, string $email) argument
51 $this->user_id = $user_id;
57 ->where('user_id', '=', $this->user_id)
69 return $this->user_id;
95 ->where('user_id', '=', $this->user_id)
127 ->where('user_id', '=', $this->user_id)
159 ->where('user_id', '=', $this->user_id)
195 'user_id' => $this->user_id,
215 ->where('user_id', '=', $this->user_id)
254 …return static fn (object $row): User => new self((int) $row->user_id, $row->user_name, $row->real_…