/**
  * @since 1.0
  *
  * @param array $panels
  * @return array
  */
 public function &loadDebugBarPanel($panels)
 {
     include_once 'debugger-panel.class.php';
     $this->debugBarPanel = DebuggerPanel::newPanel($this->panelTitle);
     array_unshift($panels, $this->debugBarPanel);
     return $panels;
 }