Files
DesignPatternsPHP/Registry/index.php
Dominik Liebler 59001ecf92 README Registry
2013-09-24 14:07:04 +02:00

10 lines
211 B
PHP

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