You are here

public static function SimpleXMLElement::phpize in Service Container 7.2

Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/SimpleXMLElement.php \Symfony\Component\DependencyInjection\SimpleXMLElement::phpize()

Converts an xml value to a PHP type.

Parameters

mixed $value:

Return value

mixed

Overrides SimpleXMLElement::phpize

2 calls to SimpleXMLElement::phpize()
SimpleXMLElement::getArgumentsAsPhp in modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/SimpleXMLElement.php
Returns arguments as valid PHP types.
SimpleXMLElement::getAttributeAsPhp in modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/SimpleXMLElement.php
Converts an attribute as a PHP type.
1 method overrides SimpleXMLElement::phpize()
SimpleXMLElement::phpize in modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/SimpleXMLElement.php
Converts an xml value to a PHP type.

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/SimpleXMLElement.php, line 112

Class

SimpleXMLElement
SimpleXMLElement class.

Namespace

Symfony\Component\DependencyInjection

Code

public static function phpize($value) {
  return XmlUtils::phpize($value);
}