customerId = $customerId; $this->lastLoginAt = $lastLoginAt; $this->lastVisitAt = $lastVisitAt; $this->lastLogoutAt = $lastLogoutAt; } /** * Retrieve customer id * * @return int */ public function getCustomerId() { return $this->customerId; } /** * Retrieve last login date as string * * @return string */ public function getLastLoginAt() { return $this->lastLoginAt; } /** * Retrieve last visit date as string * * @return string */ public function getLastVisitAt() { return $this->lastVisitAt; } /** * Retrieve last logout date as string * * @return string */ public function getLastLogoutAt() { return $this->lastLogoutAt; } }