mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-10 07:54:56 +02:00
All public methods of abstract classes should be final. Enforce API encapsulation in an inheritance architecture. If you want to override a method, use the Template method pattern.
43 lines
1.0 KiB
PHP
43 lines
1.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Registry;
|
|
|
|
use InvalidArgumentException;
|
|
|
|
abstract class Registry
|
|
{
|
|
public 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 array $services = [];
|
|
|
|
private static array $allowedKeys = [
|
|
self::LOGGER,
|
|
];
|
|
|
|
final public static function set(string $key, Service $value)
|
|
{
|
|
if (!in_array($key, self::$allowedKeys)) {
|
|
throw new InvalidArgumentException('Invalid key given');
|
|
}
|
|
|
|
self::$services[$key] = $value;
|
|
}
|
|
|
|
final 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];
|
|
}
|
|
}
|