public function EntityconnectCache::get in Entity connect 8.2
Gets the data from our PrivateTempStore for the given key.
Parameters
string $key: The cache key.
Return value
mixed The cache data.
File
- src/
EntityconnectCache.php, line 82
Class
- EntityconnectCache
- A custom class for managing the Entityconnect cache.
Namespace
Drupal\entityconnectCode
public function get($key) {
return $this->store
->get($key);
}