← Back
Editing: ReportControlRecipient.php
<?php namespace App\Report\Control; use App\Report\Control\Type\TypeControlReportInterface; class ReportControlRecipient { public function __construct( private readonly string $email, private readonly array $ccEmails, private readonly TypeControlReportInterface $typeControlReport ) { } public function getEmail(): string { return $this->email; } public function getCCEmails(): array { return $this->ccEmails; } public function getTypeControlReport(): TypeControlReportInterface { return $this->typeControlReport; } }
Save File
Cancel