for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ForecastAutomation\Kernel;
use ReflectionClass;
class AbstractFactory
{
private Locator $locator;
public function __construct()
$this->locator = new Locator($this);
}
public function getProvidedDependency(string $id)
return $this->locator->getProvidedDependency($id);