PHP Classes

File: tests/Stub/MinOccurrences.php

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

Contents

Class file image Download
<?php

namespace PHP2WSDL\Test\Stub;

/**
 * Dummy class containing a minOccurs attribute
 */
class MinOccurrences
{

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

   
/**
     * @var string
     * @minOccurs 0
     */
   
public $nonRequiredString;

   
/**
     * @var string
     * @minOccurs -3
     */
   
public $stringWithNegativeMinOccurs;

   
/**
     * @var string
     * @minOccurs 3
     */
   
public $atLeast3TimesString;
}