You are here

protected function Dbug::closeTdRow in dBug for Drupal 8

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

Close table row.

Return value

string The td close tag.

6 calls to Dbug::closeTdRow()
Dbug::varIsArray in src/Dbug.php
If variable is an array type.
Dbug::varIsGdResource in src/Dbug.php
If variable is an image/gd resource type.
Dbug::varIsObject in src/Dbug.php
If variable is an object type.
Dbug::varIsResource in src/Dbug.php
If variable is a resource type.
Dbug::varIsXmlResource in src/Dbug.php
If variable is an xml resource type.

... See full list

File

src/Dbug.php, line 287

Class

Dbug
Implementation of dBug for Drupal.

Namespace

Drupal\dbug

Code

protected function closeTdRow() {
  return "</td></tr>\n";
}