public function DeveloperAppStorage::getFromCache in Apigee Edge 8
Exposes getFromPersistentCache() as a public method.
Parameters
array $ids: Array of entity ids.
Return value
\Drupal\Core\Entity\EntityInterface[] Array of entities from the cache.
File
- tests/
modules/ apigee_edge_test/ src/ Entity/ Storage/ DeveloperAppStorage.php, line 39
Class
- DeveloperAppStorage
- Developer app storage controller for tests.
Namespace
Drupal\apigee_edge_test\Entity\StorageCode
public function getFromCache(array $ids) {
return $this
->getFromPersistentCache($ids);
}