corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-14 28ab0738daf4a251fdb92753d3c008f2b6f64de0
src/Framework/Viewer.php
@@ -3,9 +3,13 @@
namespace Framework;
class Viewer {
    public function render(string $template, array $data = []) {
    public function render(string $template, array $data = []): string {
        extract($data, EXTR_SKIP);
        ob_start();
        require "views/$template";
        return ob_get_clean();
    }
}