id; } public function brand(): ?string { return $this->brand; } public function lastFourDigits(): ?string { return $this->lastFourDigits; } public function toArray(): array { return [ 'id' => $this->id, 'first_six_digits' => $this->firstSixDigits, 'last_four_digits' => $this->lastFourDigits, 'brand' => $this->brand, 'holder_name' => $this->holderName, 'exp_month' => $this->expMonth, 'exp_year' => $this->expYear, 'status' => $this->status, 'type' => $this->type, 'created_at' => $this->createdAt, 'updated_at' => $this->updatedAt, ]; } }