*/ private array $sentEmails = []; public function send(string $from, string $to, string $body): void { $this->sentEmails[] = [ 'from' => $from, 'to' => $to, 'body' => $body, ]; } public function getNumberOfEmailsSent(): int { return count($this->sentEmails); } /** * @return array */ public function getSentEmails(): array { return $this->sentEmails; } }