function StateWrapper::getMultiple

File

webprofiler/src/State/StateWrapper.php, line 53

Class

StateWrapper
Class StateWrapper.

Namespace

Drupal\webprofiler\State

Code

public function getMultiple(array $keys) {
    foreach ($keys as $key) {
        $this->dataCollector
            ->addState($key);
    }
    return $this->state
        ->getMultiple($keys);
}