removed ServiceConfigurationFactory

This commit is contained in:
Christian Kerl 2011-03-26 16:22:56 +01:00
parent 74005058c0
commit 0996cf80d9
1 changed files with 2 additions and 7 deletions

View File

@ -50,11 +50,6 @@ class SoapWebServiceController extends ContainerAware
*/
protected $soapResponse;
/**
* @var \Bundle\WebServiceBundle\ServiceConfigurationFactory
*/
protected $serviceConfigurationFactory;
/**
* @var \Bundle\WebServiceBundle\ServiceBinding\ServiceBinder
*/
@ -65,9 +60,9 @@ class SoapWebServiceController extends ContainerAware
*/
protected $kernel;
public function __construct(ServiceConfigurationFactory $serviceConfigurationFactory, HttpKernelInterface $kernel)
public function __construct(ContainerInterface $container, HttpKernelInterface $kernel)
{
$this->serviceConfigurationFactory = $serviceConfigurationFactory;
$this->setContainer($container);
$this->kernel = $kernel;
}