Fixed ComplexType strategy

This commit is contained in:
Francis Besset 2013-02-20 20:42:08 +01:00
parent b7d9705891
commit a86c680263
1 changed files with 6 additions and 4 deletions

View File

@ -1,8 +1,10 @@
<?php <?php
/* /*
* This file is part of the BeSimpleSoapBundle. * This file is part of the BeSimpleSoapBundle.
* *
* (c) Christian Kerl <christian-kerl@web.de> * (c) Christian Kerl <christian-kerl@web.de>
* (c) Francis Besset <francis.besset@gmail.com>
* *
* This source file is subject to the MIT license that is bundled * This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE. * with this source code in the file LICENSE.
@ -12,12 +14,12 @@ namespace BeSimple\SoapBundle\ServiceDefinition\Strategy;
use BeSimple\SoapBundle\ServiceDefinition\Loader\AnnotationComplexTypeLoader; use BeSimple\SoapBundle\ServiceDefinition\Loader\AnnotationComplexTypeLoader;
use Zend\Soap\Wsdl; use Zend\Soap\Wsdl;
use Zend\Soap\Wsdl\Strategy\AbstractStrategy; use Zend\Soap\Wsdl\ComplexTypeStrategy\AbstractComplexTypeStrategy;
/** /**
* @author Francis Besset <francis.besset@gmail.com> * @author Francis Besset <francis.besset@gmail.com>
*/ */
class ComplexType extends AbstractStrategy class ComplexType extends AbstractComplexTypeStrategy
{ {
private $loader; private $loader;
private $definition; private $definition;