PHP Classes

File: tests/resources/generated/ValidApiWebSearchOption.php

Recommend this page to a friend!
  Classes of WsdlToPhp   PHP SOAP Package Generator   tests/resources/generated/ValidApiWebSearchOption.php   Download  
File: tests/resources/generated/ValidApiWebSearchOption.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: PHP SOAP Package Generator
Generate package to call SOAP services using WSDL
Author: By
Last change: issue-35 - fix #35: allow property value to be null
when value should be an enumeration value
Date: 9 years ago
Size: 1,254 bytes
 

Contents

Class file image Download
<?php

namespace Api\EnumType;

/**
 * This class stands for WebSearchOption EnumType
 * @package Api
 * @subpackage Enumerations
 * @release 1.1.0
 */
class ApiWebSearchOption
{
   
/**
     * Constant for value 'DisableHostCollapsing'
     * @return string 'DisableHostCollapsing'
     */
   
const ENUM_VALUE_0 = 'DisableHostCollapsing';
   
/**
     * Constant for value 'DisableQueryAlterations'
     * @return string 'DisableQueryAlterations'
     */
   
const ENUM_VALUE_1 = 'DisableQueryAlterations';
   
/**
     * Return true if value is allowed
     * @uses self::getValidValues()
     * @param mixed $value value
     * @return bool true|false
     */
   
public static function valueIsValid($value)
    {
        return (
$value === null) || in_array($value, self::getValidValues(), true);
    }
   
/**
     * Return allowed values
     * @uses self::ENUM_VALUE_0
     * @uses self::ENUM_VALUE_1
     * @return string[]
     */
   
public static function getValidValues()
    {
        return array(
           
self::ENUM_VALUE_0,
           
self::ENUM_VALUE_1,
        );
    }
   
/**
     * Method returning the class name
     * @return string __CLASS__
     */
   
public function __toString()
    {
        return
__CLASS__;
    }
}