1234567891011121314151617181920212223 |
- <?php namespace App\Facades\Servers\Redis;
- use Illuminate\Support\Facades\Facade;
- /**
- * @method static miexd lock(string $key,string $value, int $ex=20) 上异步锁
- * @method static miexd unlock($key,$value) 释放锁
- *
- * @see \App\Servers\Redis\RedisLock
- *
- */
- class RedisLock extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return 'App\Servers\Redis\RedisLock';
- }
- }
|