From b80db2cebf97c9fd8232c504e505c3ccaf65a95f Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Sat, 9 Aug 2014 23:03:31 +0200 Subject: [PATCH] Fix error --- src/Alias.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Alias.php b/src/Alias.php index c77be4a..7a9d785 100644 --- a/src/Alias.php +++ b/src/Alias.php @@ -184,7 +184,7 @@ class Alias //If it doesn't exist, skip it if (!class_exists($root) && !interface_exists($root)) { - $this->error("Class $this->root is not found."); + $this->error("Class $root is not found."); return; }