← Back
Editing: FullControlReport.php
<?php namespace App\Report\Control\Type; use App\Entity\Controle; class FullControlReport extends AbstractTypeControlReport { public const TEMPLATE = 'emails/report/control/report.full.html.twig'; public const TITLE = 'Compte rendu complet de contrôle'; public function getSubject(Controle $control): string { return self::TITLE; } }
Save File
Cancel