DebugKit\Panel\HistoryPanel::data PHP Метод

data() публичный Метод

Get the data for the panel.
public data ( ) : array
Результат array
    public function data()
    {
        $table = TableRegistry::get('DebugKit.Requests');
        $recent = $table->find('recent');
        return ['requests' => $recent->toArray()];
    }
HistoryPanel