Jarves\Controller\Admin\DashboardWidgets::latencies PHP Метод

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

public latencies ( &$response )
    public function latencies(&$response)
    {
        $lastLatency = $this->distributedCache->get('core/latency');
        $result = array('frontend' => 0, 'backend' => 0, 'database' => 0, 'session' => 0, 'cache' => 0);
        foreach ($result as $key => &$value) {
            $value = isset($lastLatency[$key]) ? $lastLatency[$key] : array();
        }
        $response['JarvesBundle/latencies'] = $result;
    }