From 2cd87e0b67c5372651aa390cddc9b9d658e2a20f Mon Sep 17 00:00:00 2001 From: Thedro Neely Date: Fri, 11 Nov 2022 12:03:15 -0500 Subject: bootstrap/Router: Make class final --- bootstrap/Router.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap/Router.php b/bootstrap/Router.php index c8f51e3..c78ab8b 100644 --- a/bootstrap/Router.php +++ b/bootstrap/Router.php @@ -1,6 +1,6 @@ [], @@ -26,7 +26,7 @@ class Router public static function load($file) { $router = new static; - require $file; + include $file; return $router; } -- cgit v1.2.3