*/ public function toArray(Request $request): array { return [ /** @var string $id ID of project member */ 'id' => $this->resource->id, /** @var int|null $billable_rate Billable rate in cents per hour */ 'billable_rate' => $this->resource->billable_rate, /** @var string $user_id ID of the user */ 'user_id' => $this->resource->user_id, /** @var string $project_id ID of the project */ 'project_id' => $this->resource->project_id, ]; } }