PHP Classes

File: tests/Fixtures/DataProvider/TestMethodInputArrayOfScalars.php

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

Contents

Class file image Download
<?php

namespace PHP2WSDL\Test\Fixtures\DataProvider;

class
TestMethodInputArrayOfScalars
{
   
/**
     * @param array $array Simple array.
     */
   
public function inputArraySimple(array $array)
    {
    }

   
/**
     * @param string[] $strings Array of strings.
     */
   
public function inputArrayStrings(array $strings)
    {
    }

   
/**
     * @param int[] $ints Array of integers.
     */
   
public function inputArrayInt(array $ints)
    {
    }

   
/**
     * @param integer[] $integers Array of integers.
     */
   
public function inputArrayInteger(array $integers)
    {
    }

   
/**
     * @param decimal[] $decimals Array of decimals.
     */
   
public function inputArrayDecimal(array $decimals)
    {
    }

   
/**
     * @param float[] $floats Array of floats.
     */
   
public function inputArrayFloat(array $floats)
    {
    }
}