コード例 #1
0
ファイル: Paginator.php プロジェクト: GrifiS/Symfony2CMS
 /**
  * Sets a cache object
  *
  * @param \Zend\Cache\Frontend\Core $cache
  */
 public static function setCache(\Zend\Cache\Frontend\Core $cache)
 {
     self::$_cache = $cache;
 }
コード例 #2
0
ファイル: Paginator.php プロジェクト: nevvermind/zf2
 /**
  * Sets a cache object
  *
  * @param CacheAdapter $cache
  */
 public static function setCache(CacheAdapter $cache)
 {
     self::$_cache = $cache;
 }
コード例 #3
0
ファイル: Paginator.php プロジェクト: nsenkevich/zf2
 /**
  * Sets a cache object
  *
  * @param CacheCore $cache
  */
 public static function setCache(CacheCore $cache)
 {
     self::$_cache = $cache;
 }
コード例 #4
0
ファイル: Paginator.php プロジェクト: navassouza/zf2
 /**
  * Sets a cache object
  *
  * @param CacheStorage $cache
  */
 public static function setCache(CacheStorage $cache)
 {
     self::$_cache = $cache;
 }