You are here

protected function Dbug::varIsXml in dBug for Drupal 8

Same name and namespace in other branches
  1. 2.0.x src/Dbug.php \Drupal\dbug\Dbug::varIsXml()
  2. 1.0.x src/Dbug.php \Drupal\dbug\Dbug::varIsXml()

If variable is an xml type.

Parameters

mixed $var: The variable.

File

src/Dbug.php, line 557

Class

Dbug
Implementation of dBug for Drupal.

Namespace

Drupal\dbug

Code

protected function varIsXml($var) {
  $this
    ->varIsXmlResource($var);
}