You are here

function Report::__destruct in Forena Reports 7.5

Same name and namespace in other branches
  1. 8 src/Report.php \Drupal\forena\Report::__destruct()

File

src/Report.php, line 80
Basic report provider. Controls the rendering of the report.

Class

Report

Namespace

Drupal\forena

Code

function __destruct() {
  foreach ($this as $key => $value) {
    unset($this->{$key});
  }
}