function SourcePluginBase::getCache
Gets the cache object.
Return value
\Drupal\Core\Cache\CacheBackendInterface The cache object.
File
- 
              core/
modules/ migrate/ src/ Plugin/ migrate/ source/ SourcePluginBase.php, line 523  
Class
- SourcePluginBase
 - The base class for source plugins.
 
Namespace
Drupal\migrate\Plugin\migrate\sourceCode
protected function getCache() {
  if (!isset($this->cache)) {
    $this->cache = \Drupal::cache('migrate');
  }
  return $this->cache;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.