PHP Classes

File: tests/Fixtures/DataProvider/TestMethodInputWithScalars.php

Recommend this page to a friend!
  Classes of Protung Dragos   PHP WSDL Generator   tests/Fixtures/DataProvider/TestMethodInputWithScalars.php   Download  
File: tests/Fixtures/DataProvider/TestMethodInputWithScalars.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/DataProvider/TestMethodInputWithScalars.php
Date: 2 months ago
Size: 1,015 bytes
 

Contents

Class file image Download
<?php

namespace PHP2WSDL\Test\Fixtures\DataProvider;

class
TestMethodInputWithScalars
{
   
/**
     * @param string $input Input.
     */
   
public function inputString($input)
    {
    }

   
/**
     * @param bool $input1 Input 1.
     * @param boolean $input2 Input 2.
     */
   
public function inputBoolean($input1, $input2)
    {
    }

   
/**
     * @param int $input1 Input 1.
     * @param integer $input2 Input 2.
     */
   
public function inputInteger($input1, $input2)
    {
    }

   
/**
     * @param double $input Input.
     */
   
public function inputDouble($input)
    {
    }

   
/**
     * @param float $input Input.
     */
   
public function inputFloat($input)
    {
    }

   
/**
     * @param decimal $input Input.
     */
   
public function inputDecimal($input)
    {
    }

   
/**
     * @param time $input1 Input 1.
     * @param date $input2 Input 2.
     * @param \DateTime $input3 Input 3.
     */
   
public function inputTime($input1, $input2, $input3)
    {
    }
}