<?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);
}
}
-
Ketan authoredf012f907