getStructValueByName() public method

public getStructValueByName ( string $name ) : StructValue | null
$name string
return WsdlToPhp\PackageGenerator\Model\StructValue | null
Example #1
0
 /**
  * Gets the value object for the given value
  * @uses Struct::getValues()
  * @uses AbstractModel::getName()
  * @param string $value Value name
  * @return StructValue|null
  */
 public function getValue($value)
 {
     return $this->values->getStructValueByName($value);
 }