PHP Classes

File: tests/Stub/MinMaxOccurrencesOfOne.php

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

Contents

Class file image Download
<?php

namespace PHP2WSDL\Test\Stub;

/**
 * Dummy class containing a minOccurs and a maxOccurs attribute both with a value of 1
 */
class MinMaxOccurrencesOfOne
{

   
/**
     * @var string
     */
   
public $normalValue;

   
/**
     * @var string
     * @minOccurs 1
     * @maxOccurs 1
     */
   
public $requiredString;

}