Interface Yiisoft\Di\ContainerConfigInterface
| Implemented by | Yiisoft\Di\ContainerConfig |
|---|
Container configuration.
Public Methods
Method Details
| public abstract array getDefinitions ( ) | ||
| return | array |
Definitions to put into container. |
|---|---|---|
public function getDefinitions(): array;
| public abstract array getDelegates ( ) | ||
| return | array |
Container delegates. Each delegate is a callable in format
|
|---|---|---|
public function getDelegates(): array;
| public abstract array getProviders ( ) | ||
| return | array |
Service providers to get definitions from. |
|---|---|---|
public function getProviders(): array;
| public abstract array getTags ( ) | ||
| return | array |
Tagged service IDs. The structure is |
|---|---|---|
public function getTags(): array;
| public abstract boolean shouldValidate ( ) | ||
| return | boolean |
Whether definitions should be validated immediately. |
|---|---|---|
public function shouldValidate(): bool;
| public abstract boolean useStrictMode ( ) | ||
| return | boolean |
If the automatic addition of definition when class exists and can be resolved is disabled. |
|---|---|---|
public function useStrictMode(): bool;
Signup or Login in order to comment.