Files
DesignPatternsPHP/Registry/index.php
2013-09-21 22:17:54 +02:00

10 lines
202 B
PHP

<?php
use DesignPatterns\Registry;
// while bootstrapping the application
Registry::set(Registry::LOGGER, new \StdClass());
// throughout the application
Registry::get(Registry::LOGGER)->log('foo');