2019-08-26 06:18:51 +02:00

42 lines
1011 B
PHP

<?php declare(strict_types=1);
namespace DesignPatterns\Structural\Registry;
abstract class Registry
{
const LOGGER = 'logger';
/**
* this introduces global state in your application which can not be mocked up for testing
* and is therefor considered an anti-pattern! Use dependency injection instead!
*
* @var Service[]
*/
private static $services = [];
/**
* @var array
*/
private static $allowedKeys = [
self::LOGGER,
];
public static function set(string $key, Service $value)
{
if (!in_array($key, self::$allowedKeys)) {
throw new \InvalidArgumentException('Invalid key given');
}
self::$services[$key] = $value;
}
public static function get(string $key): Service
{
if (!in_array($key, self::$allowedKeys) || !isset(self::$services[$key])) {
throw new \InvalidArgumentException('Invalid key given');
}
return self::$services[$key];
}
}