mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 09:42:24 +01:00
10 lines
211 B
PHP
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');
|