DebugKit\Panel\HistoryPanel::data PHP Méthode

data() public méthode

Get the data for the panel.
public data ( ) : array
Résultat array
    public function data()
    {
        $table = TableRegistry::get('DebugKit.Requests');
        $recent = $table->find('recent');
        return ['requests' => $recent->toArray()];
    }
HistoryPanel