mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-25 17:21:19 +02: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');
|