You are here

public function State::getAll in Advanced CSS/JS Aggregation 8.2

Gets all stored information from this Key Value Store.

Return value

array An array of all key value pairs.

2 calls to State::getAll()
State::clearMissingFiles in src/State/State.php
Scan the filesystem for missing files and removee from database.
State::getRandomKey in src/State/State.php
Get a semi-random (randomness not guaranteed) key.

File

src/State/State.php, line 23

Class

State
Provides AdvAgg State interfaces with a few extra commands.

Namespace

Drupal\advagg\State

Code

public function getAll() {
  $values = $this->keyValueStore
    ->getAll();
  return $values;
}