Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/laminas/laminas-soap/src/Wsdl/ComplexTypeStrategy/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-soap/src/Wsdl/ComplexTypeStrategy/AnyType.php

<?php

namespace Laminas\Soap\Wsdl\ComplexTypeStrategy;

use Laminas\Soap\Wsdl;

class AnyType implements ComplexTypeStrategyInterface
{
    /**
     * Not needed in this strategy.
     */
    public function setContext(Wsdl $context)
    {
    }

    /**
     * Returns xsd:anyType regardless of the input.
     *
     * @param  string $type
     * @return string
     */
    public function addComplexType($type)
    {
        return Wsdl::XSD_NS . ':anyType';
    }
}