DebugKit\Cache\Engine\DebugEngine::readMany PHP Method

readMany() public method

{@inheritDoc}
public readMany ( $data )
    public function readMany($data)
    {
        $this->_track('read');
        DebugTimer::start('Cache.readMany');
        $result = $this->_engine->readMany($data);
        DebugTimer::stop('Cache.readMany');
        return $result;
    }