DebugKit\Panel\SqlLogPanel::data PHP Method

data() public method

Get the data this panel wants to store.
public data ( ) : array
return array
    public function data()
    {
        return ['tables' => array_map(function (Table $table) {
            return $table->alias();
        }, TableRegistry::genericInstances()), 'loggers' => $this->_loggers];
    }