Julio Montoya 321ce65f18 Updating vendors | преди 11 години | |
---|---|---|
.. | ||
Compiler | преди 11 години | |
Dumper | преди 11 години | |
Exception | преди 11 години | |
Extension | преди 11 години | |
LazyProxy | преди 11 години | |
Loader | преди 11 години | |
ParameterBag | преди 11 години | |
Tests | преди 11 години | |
Alias.php | преди 12 години | |
CHANGELOG.md | преди 12 години | |
Container.php | преди 11 години | |
ContainerAware.php | преди 12 години | |
ContainerAwareInterface.php | преди 12 години | |
ContainerBuilder.php | преди 11 години | |
ContainerInterface.php | преди 12 години | |
Definition.php | преди 11 години | |
DefinitionDecorator.php | преди 11 години | |
IntrospectableContainerInterface.php | преди 12 години | |
LICENSE | преди 12 години | |
Parameter.php | преди 12 години | |
README.md | преди 12 години | |
Reference.php | преди 12 години | |
Scope.php | преди 12 години | |
ScopeInterface.php | преди 12 години | |
SimpleXMLElement.php | преди 12 години | |
TaggedContainerInterface.php | преди 12 години | |
Variable.php | преди 12 години | |
composer.json | преди 11 години | |
phpunit.xml.dist | преди 12 години |
DependencyInjection manages your services via a robust and flexible Dependency Injection Container.
Here is a simple example that shows how to register services and parameters:
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Reference;
$sc = new ContainerBuilder();
$sc
->register('foo', '%foo.class%')
->addArgument(new Reference('bar'))
;
$sc->setParameter('foo.class', 'Foo');
$sc->get('foo');
Method Calls (Setter Injection):
$sc = new ContainerBuilder();
$sc
->register('bar', '%bar.class%')
->addMethodCall('setFoo', array(new Reference('foo')))
;
$sc->setParameter('bar.class', 'Bar');
$sc->get('bar');
Factory Class:
If your service is retrieved by calling a static method:
$sc = new ContainerBuilder();
$sc
->register('bar', '%bar.class%')
->setFactoryClass('%bar.class%')
->setFactoryMethod('getInstance')
->addArgument('Aarrg!!!')
;
$sc->setParameter('bar.class', 'Bar');
$sc->get('bar');
File Include:
For some services, especially those that are difficult or impossible to autoload, you may need the container to include a file before instantiating your class.
$sc = new ContainerBuilder();
$sc
->register('bar', '%bar.class%')
->setFile('/path/to/file')
->addArgument('Aarrg!!!')
;
$sc->setParameter('bar.class', 'Bar');
$sc->get('bar');
You can run the unit tests with the following command:
$ cd path/to/Symfony/Component/DependencyInjection/
$ composer.phar install --dev
$ phpunit