1
0
Files

55 lines
1.6 KiB
PHP
Raw Permalink Normal View History

2026-03-04 15:56:58 +01:00
<?php
namespace MintyPHP\App;
use RuntimeException;
2026-03-06 00:44:52 +01:00
// Minimal DI container: factories are registered with set() and resolved lazily on first get().
// Each service is instantiated at most once — get() returns the same instance on every call.
2026-03-04 15:56:58 +01:00
final class AppContainer
{
/** @var array<string, callable(self): mixed> */
private array $bindings = [];
/** @var array<string, mixed> */
private array $instances = [];
private bool $protectExistingBindings = false;
2026-03-04 15:56:58 +01:00
public function set(string $id, callable $factory): void
{
if ($this->protectExistingBindings && $this->has($id)) {
throw new RuntimeException('Refusing to overwrite existing service binding: ' . $id);
}
2026-03-04 15:56:58 +01:00
$this->bindings[$id] = $factory;
}
public function has(string $id): bool
{
return array_key_exists($id, $this->instances) || array_key_exists($id, $this->bindings);
}
public function get(string $id): mixed
{
if (array_key_exists($id, $this->instances)) {
return $this->instances[$id];
}
if (!array_key_exists($id, $this->bindings)) {
throw new RuntimeException('Service not bound: ' . $id);
}
2026-03-06 00:44:52 +01:00
// Resolve, cache, and return — factory receives the container for its own dependencies.
2026-03-04 15:56:58 +01:00
$this->instances[$id] = ($this->bindings[$id])($this);
return $this->instances[$id];
}
/**
* Freeze existing bindings/instances: any later overwrite attempt throws.
*/
public function protectExistingBindings(): void
{
$this->protectExistingBindings = true;
}
2026-03-04 15:56:58 +01:00
}