This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Component/DependencyInjection/Dumper
Fabien Potencier efed6005cb [DependencyInjection] fixed PHP dumper
In the dumped PHP class, we must use get() and not get*Service() methods to get services.
That's because all calls must be managed by get(). From the outside, you can call
get*Service() because as they are protected, they are caught by the __call() method;
which is not the case obviously when it is used internally.

If not, if you override a service with set(), this won't work when a service
depends on this one (the default one will still be used).
2010-11-12 17:38:32 +01:00
..
GraphvizDumperTest.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
PhpDumperTest.php [DependencyInjection] fixed PHP dumper 2010-11-12 17:38:32 +01:00
XmlDumperTest.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
YamlDumperTest.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00