Example #1
0
 /**
  * Redis support
  *
  * @return Redis | null
  */
 public function getRedisAdapter()
 {
     if (isset($this->cacheAdapter) && get_class($this->cacheAdapter) == Redis::class) {
         return $this->cacheAdapter->getAdapter();
     }
     return null;
 }