| 1 | <?php |
||
| 5 | abstract class AbstractServiceFactoryContainer |
||
| 6 | { |
||
| 7 | protected $map; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @param callable[] $map |
||
| 11 | */ |
||
| 12 | public function __construct(array $map = []) |
||
| 16 | |||
| 17 | public function register(string $name, callable $factoryClosure): AbstractServiceFactoryContainer |
||
| 23 | |||
| 24 | public function has(string $name): bool |
||
| 28 | } |
||
| 29 |