<?php declare(strict_types=1); class ServiceManager { /** * Specify a factory for a given service name. * * @param string|callable|Factory\FactoryInterface $factory */ public function setFactory(string $serviceName, $factory): void {} /** * Create a new instance with an already resolved name * * @return mixed */ private function doCreate(string $resolvedName, ?array $options = null) {} }
You have javascript disabled. You will not be able to edit any code.