You are here

function FrxReport::__destruct in Forena Reports 7.3

Same name and namespace in other branches
  1. 6.2 FrxReport.inc \FrxReport::__destruct()
  2. 7.2 FrxReport.inc \FrxReport::__destruct()
  3. 7.4 FrxReport.inc \FrxReport::__destruct()

File

./FrxReport.inc, line 113
Basic report provider. Controls the rendering of the report.

Class

FrxReport

Code

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