name = $name; $this->reference = $reference; $this->detail = $detail; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return string */ public function getReference(): string { return $this->reference; } /** * @return array */ public function getDetail(): array { return $this->detail; } }