songxingwei 2 years ago
parent
commit
6fc0ec7a57
1 changed files with 0 additions and 3 deletions
  1. 0 3
      thinkphp/library/think/cache/driver/Redis.php

+ 0 - 3
thinkphp/library/think/cache/driver/Redis.php

@@ -295,8 +295,6 @@ class Redis extends Driver
      * @param unknown $val
      */
     public function lPush($key,$val){
-
-
         return	$this->handler->lPush($key,$val);
     }
 
@@ -305,7 +303,6 @@ class Redis extends Driver
 	 *如果 key 不存在,那么 key 的值会先被初始化为 0 ,然后再执行 INCR 操作。
 	 */
     public function Incr($key){
-
         return $this->handler->incr($key);
     }