PATH:
home
/
lab2454c
/
netxzero.com
/
carbon-credit
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Cache
<?php namespace Illuminate\Cache; trait HasCacheLock { /** * Get a lock instance. * * @param string $name * @param int $seconds * @param string|null $owner * @return \Illuminate\Contracts\Cache\Lock */ public function lock($name, $seconds = 0, $owner = null) { return new CacheLock($this, $name, $seconds, $owner); } /** * Restore a lock instance using the owner identifier. * * @param string $name * @param string $owner * @return \Illuminate\Contracts\Cache\Lock */ public function restoreLock($name, $owner) { return $this->lock($name, 0, $owner); } }
[-] TaggedCache.php
[edit]
[-] RateLimiter.php
[edit]
[-] composer.json
[edit]
[-] DatabaseStore.php
[edit]
[-] LuaScripts.php
[edit]
[-] MemcachedLock.php
[edit]
[+]
..
[-] Lock.php
[edit]
[-] MemcachedConnector.php
[edit]
[-] MemcachedStore.php
[edit]
[-] RedisStore.php
[edit]
[-] TaggableStore.php
[edit]
[-] CacheServiceProvider.php
[edit]
[-] CacheLock.php
[edit]
[-] RedisTaggedCache.php
[edit]
[+]
Events
[-] DynamoDbStore.php
[edit]
[-] ApcWrapper.php
[edit]
[-] Repository.php
[edit]
[-] DynamoDbLock.php
[edit]
[-] NullStore.php
[edit]
[-] LICENSE.md
[edit]
[-] NoLock.php
[edit]
[+]
Console
[-] CacheManager.php
[edit]
[-] RetrievesMultipleKeys.php
[edit]
[-] FileStore.php
[edit]
[-] ArrayStore.php
[edit]
[-] DatabaseLock.php
[edit]
[-] RedisLock.php
[edit]
[-] ArrayLock.php
[edit]
[+]
RateLimiting
[-] TagSet.php
[edit]
[-] PhpRedisLock.php
[edit]
[-] ApcStore.php
[edit]
[-] HasCacheLock.php
[edit]