PHP Classes

File: tests/Fixtures/TestGenerateWSDLForURIWithAllComponents.php

Recommend this page to a friend!
  Classes of Protung Dragos   PHP WSDL Generator   tests/Fixtures/TestGenerateWSDLForURIWithAllComponents.php   Download  
File: tests/Fixtures/TestGenerateWSDLForURIWithAllComponents.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP WSDL Generator
Generate WSDL from PHP classes code
Author: By
Last change: Update of tests/Fixtures/TestGenerateWSDLForURIWithAllComponents.php
Date: 2 months ago
Size: 312 bytes
 

Contents

Class file image Download
<?php

namespace PHP2WSDL\Test\Fixtures;

/**
 * Fixture class.
 */
class TestGenerateWSDLForURIWithAllComponents
{
   
/**
     * Adds two numbers.
     *
     * @param float $p1
     * @param float $p2
     * @return float
     */
   
protected function add($p1, $p2)
    {
        return (
$p1 + $p2);
    }
}