public static function SimpleXMLElement::phpize

Converts an xml value to a php type.

Parameters

mixed $value:

Return value

mixed

Overrides SimpleXMLElement::phpize

3 calls to SimpleXMLElement::phpize()
SimpleXMLElement::getArgumentsAsPhp in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/SimpleXMLElement.php
Returns arguments as valid php types.
SimpleXMLElement::getAttributeAsPhp in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/SimpleXMLElement.php
Converts an attribute as a php type.
XmlFileLoader::parseDefinition in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Loader/XmlFileLoader.php
Parses an individual Definition
1 method overrides SimpleXMLElement::phpize()
SimpleXMLElement::phpize in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/SimpleXMLElement.php
Converts an xml value to a php type.

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/SimpleXMLElement.php, line 104

Class

SimpleXMLElement
SimpleXMLElement class.

Namespace

Symfony\Component\DependencyInjection

Code

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