mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-01 03:25:00 +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');
|