From 99bdd933cd8458f67c3fa08abbdab799c03367f1 Mon Sep 17 00:00:00 2001 From: Netkas Date: Wed, 30 Aug 2023 20:06:13 -0400 Subject: [PATCH] Created autoload.php in test --- src/ncc/Managers/ProjectManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ncc/Managers/ProjectManager.php b/src/ncc/Managers/ProjectManager.php index f5e5f1f..ae3eccc 100644 --- a/src/ncc/Managers/ProjectManager.php +++ b/src/ncc/Managers/ProjectManager.php @@ -79,7 +79,7 @@ } // Detect if the folder exists or not - if(!file_exists($path) || !is_dir($path)) + if(!is_dir($path)) { throw new PathNotFoundException($path); }