Pop\Cache\Cache::save PHP Méthode

save() public méthode

Method to save a value to cache.
public save ( string $id, mixed $value ) : void
$id string
$value mixed
Résultat void
    public function save($id, $value)
    {
        $this->adapter->save($id, $value, $this->lifetime);
    }