← Back
Editing: AlertProviderControlReport.php
<?php namespace App\Report\Control\Type; use App\Entity\Controle; class AlertProviderControlReport extends AbstractTypeControlReport { public const TEMPLATE = 'emails/report/control/report.provider.html.twig'; public const TITLE = 'Alerte Prestation : %s à %s'; public function getSubject(Controle $control): string { return sprintf( self::TITLE, $control->getAdresse()->getAgency()->getNom(), $control->getAdresse()->getVoie() ); } }
Save File
Cancel