<?php
require_once("models/Adherent.php");

class ControleurAdherent
{
    public static function lireAdherents()
    {
        $adherents = Adherent::getAllAdherents();
        return view('adherents.liste-adherents', ['adherents' => $adherents]);
    }
}