Пример #1
0
 /**
  * Получает данные из кэша
  * @param string $cacheKey ключ
  * @return mixed|null
  */
 protected function cacherGet($cacheKey)
 {
     if (isset($this->cacher)) {
         return $this->cacher->get($cacheKey);
     }
     return null;
 }