// File: /CyberShieldapp/classes/notification/EmailChannel.php class EmailChannel implements NotificationChannel { private $mailer; public function __construct($config) { $this->mailer = new PHPMailer(); $this->configure($config); } public function deliver($notification) { // Envoi d'email } }