WsdlToPhp\PackageGenerator\Model\Method::setParameterType PHP Method

setParameterType() public method

Set the parameter type
public setParameterType ( $parameterType ) : Method
return Method
    public function setParameterType($parameterType)
    {
        $this->parameterType = $parameterType;
        return $this;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * @see \WsdlToPhp\PackageGenerator\Parser\Wsdl\AbstractTagInputOutputParser::setKnownType()
  * @return TagInput
  */
 protected function setKnownType(Method $method, $knownType)
 {
     $method->setParameterType($knownType);
     return $this;
 }