final public function EntityIdCache::getIds in Apigee Edge 8
Returns cached ids.
Return value
string[] Array of entity ids.
Overrides EntityIdCacheInterface::getIds
File
- src/
Entity/ Controller/ Cache/ EntityIdCache.php, line 103
Class
- EntityIdCache
- Base definition of the entity id cache service used by controllers.
Namespace
Drupal\apigee_edge\Entity\Controller\CacheCode
public final function getIds() : array {
// We return a non-associative array because this is what getEntityIds()
// returns.
return array_values($this->ids);
}