removed ServiceConfigurationFactory
This commit is contained in:
parent
74005058c0
commit
0996cf80d9
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue