ProjectServiceContainer
This class has been auto-generated by the Symfony Dependency Injection Component.
Expanded class hierarchy of ProjectServiceContainer
class ProjectServiceContainer extends Container {
/**
* Constructor.
*/
public function __construct() {
parent::__construct(new ParameterBag($this
->getDefaultParameters()));
}
/**
* Gets the default parameters.
*
* @return array An array of the default parameters
*/
protected function getDefaultParameters() {
return array(
'foo' => '%baz%',
'baz' => 'bar',
'bar' => 'foo is %%foo bar',
'values' => array(
0 => true,
1 => false,
2 => NULL,
3 => 0,
4 => 1000.3,
5 => 'true',
6 => 'false',
7 => 'null',
),
);
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Container:: |
protected | property | ||
Container:: |
protected | property | ||
Container:: |
protected | property | ||
Container:: |
protected | property | ||
Container:: |
protected | property | ||
Container:: |
protected | property | ||
Container:: |
protected | property | ||
Container:: |
public | function |
Adds a scope to the container. Overrides ContainerInterface:: |
|
Container:: |
public static | function | Camelizes a string. | |
Container:: |
public | function | Compiles the container. | 1 |
Container:: |
public | function |
This is called when you enter a scope Overrides ContainerInterface:: |
|
Container:: |
public | function |
Gets a service. Overrides ContainerInterface:: |
1 |
Container:: |
public | function |
Gets a parameter. Overrides ContainerInterface:: |
1 |
Container:: |
public | function | Gets the service container parameter bag. | 1 |
Container:: |
public | function | Gets all service ids. | 1 |
Container:: |
public | function |
Returns true if the given service is defined. Overrides ContainerInterface:: |
1 |
Container:: |
public | function |
Checks if a parameter exists. Overrides ContainerInterface:: |
1 |
Container:: |
public | function |
Returns whether this container has a certain scope Overrides ContainerInterface:: |
|
Container:: |
public | function |
Returns true if the given service has actually been initialized Overrides IntrospectableContainerInterface:: |
|
Container:: |
public | function | Returns true if the container parameter bag are frozen. | |
Container:: |
public | function |
Returns whether this scope is currently active Overrides ContainerInterface:: |
|
Container:: |
public | function |
This is called to leave the current scope, and move back to the parent
scope. Overrides ContainerInterface:: |
|
Container:: |
public | function |
Sets a service. Overrides ContainerInterface:: |
1 |
Container:: |
public | function |
Sets a parameter. Overrides ContainerInterface:: |
1 |
Container:: |
public static | function | A string to underscore. | |
ContainerInterface:: |
constant | |||
ContainerInterface:: |
constant | |||
ContainerInterface:: |
constant | |||
ContainerInterface:: |
constant | |||
ContainerInterface:: |
constant | |||
ProjectServiceContainer:: |
protected | function | Gets the default parameters. | |
ProjectServiceContainer:: |
public | function |
Constructor. Overrides Container:: |