PHP Class Wsdl2PhpGenerator\Xml\OperationNode

Inheritance: extends Wsdl2PhpGenerator\Xml\DocumentedNode
Afficher le fichier Open project: wsdl2phpgenerator/wsdl2phpgenerator Class Usage Examples

Protected Properties

Свойство Type Description
$name string The name of the operation.
$params They are represented as a string in the format "type1 parameter1, type2 parameter2" etc.
$returns The name of the return type value.
$wsdlFunction string Note that the PHP SOAP client refers to these as functions.

Méthodes publiques

Méthode Description
__construct ( $wsdlFunction )
getName ( ) : string Returns the name of the operation
getParams ( ) : string Returns a string representing the parameters of the operation.
getReturns ( ) : string Returns the name of the return type for the operation.

Method Details

__construct() public méthode

public __construct ( $wsdlFunction )

getName() public méthode

Returns the name of the operation
public getName ( ) : string
Résultat string The operation name.

getParams() public méthode

Returns a string representing the parameters of the operation.
public getParams ( ) : string
Résultat string Parameters in the format "type1 param1, typ2 param2".

getReturns() public méthode

Returns the name of the return type for the operation.
public getReturns ( ) : string
Résultat string The operation return type.

Property Details

$name protected_oe property

The name of the operation.
protected string $name
Résultat string

$params protected_oe property

They are represented as a string in the format "type1 parameter1, type2 parameter2" etc.
protected $params

$returns protected_oe property

The name of the return type value.
protected $returns

$wsdlFunction protected_oe property

Note that the PHP SOAP client refers to these as functions.
protected string $wsdlFunction
Résultat string