Elgg\Cache\Pool\StashWrapper::put PHP Method

put() public method

public put ( $key, $value )
    public function put($key, $value)
    {
        assert(is_string($key) || is_int($key));
        $this->stash->getItem((string) $key)->set($value);
    }