loginsCaptured = $loginsCaptured; $this->loginsAggregated = $loginsAggregated; } /** * @return int */ public function getLoginsCaptured(): int { return $this->loginsCaptured; } /** * @return int */ public function getLoginsAggregated(): int { return $this->loginsAggregated; } #[ReturnTypeWillChange] public function jsonSerialize(): array { return [ 'loginsCaptured' => $this->getLoginsCaptured(), 'loginsAggregated' => $this->getLoginsAggregated(), ]; } }