protected function ControllerBase::cache in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Controller/ControllerBase.php \Drupal\Core\Controller\ControllerBase::cache()
Returns the requested cache bin.
Parameters
string $bin: (optional) The cache bin for which the cache object should be returned, defaults to 'default'.
Return value
\Drupal\Core\Cache\CacheBackendInterface The cache object associated with the specified bin.
File
- core/
lib/ Drupal/ Core/ Controller/ ControllerBase.php, line 175 - Contains \Drupal\Core\Controller\ControllerBase.
Class
- ControllerBase
- Utility base class for thin controllers.
Namespace
Drupal\Core\ControllerCode
protected function cache($bin = 'default') {
return $this
->container()
->get('cache.' . $bin);
}