Kraken\Runtime\Supervision\Solver::__construct PHP Method

__construct() public method

public __construct ( mixed[] $context = [] )
$context mixed[]
    public function __construct($context = [])
    {
        if (!isset($context['runtime'])) {
            throw new InstantiationException('[' . __CLASS__ . '] could not been initialized.');
        }
        $this->runtime = $context['runtime'];
        unset($context['runtime']);
        parent::__construct($context);
    }