fix registry.php namespace bug

This commit is contained in:
mike 2013-05-19 20:03:05 +08:00 committed by Dominik Liebler
parent 04b8a20894
commit 50855edc52

View File

@ -46,7 +46,7 @@ abstract class Registry
}
// while bootstraping the application
Registry::set(Registry::LOGGER, new StdClass());
Registry::set(Registry::LOGGER, new \StdClass());
// throughout the application
Registry::get(Registry::LOGGER)->log('foo');