123456789101112131415161718 |
- <?php
- namespace JMS\Serializer\Tests\Handler;
- use Symfony\Component\DependencyInjection\Container;
- class LazyHandlerRegistryWithSymfonyContainerTest extends LazyHandlerRegistryTest
- {
- protected function createContainer()
- {
- return new Container();
- }
- protected function registerHandlerService($serviceId, $listener)
- {
- $this->container->set($serviceId, $listener);
- }
- }
|