From 48315e74b2f3c79e42cb2c73d5d57fb210bf27a7 Mon Sep 17 00:00:00 2001 From: Dave Mc Nicoll Date: Thu, 30 Mar 2023 18:15:31 +0000 Subject: [PATCH] - Fixed the namespace for the autoload --- autoload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload.php b/autoload.php index 2893ecd..f567b8e 100644 --- a/autoload.php +++ b/autoload.php @@ -14,7 +14,7 @@ * @link https://www.php-fig.org/psr/psr-4/examples/ */ spl_autoload_register(function ($class) { - $prefix = 'Negundo\\'; + $prefix = 'Negundo\\Client\\'; $base_dir = __DIR__ . '/src/';