/home/techb158/ileadtechnology.com/vendor/laravel/framework/src/Illuminate/Cache
NameSizeModeActions
Console/-0755rm
Events/-0755rm
ApcStore.php25860755editdlrm
ApcWrapper.php18980755editdlrm
ArrayLock.php20800644editdlrm
ArrayStore.php46610644editdlrm
CacheManager.php97820755editdlrm
CacheServiceProvider.php11160755editdlrm
composer.json12240755editdlrm
DatabaseLock.php34190644editdlrm
DatabaseStore.php98420755editdlrm
DynamoDbLock.php14860644editdlrm
DynamoDbStore.php146640644editdlrm
FileStore.php72910755editdlrm
LICENSE.md10750644editdlrm
Lock.php35450644editdlrm
LuaScripts.php4620644editdlrm
MemcachedConnector.php23820755editdlrm
MemcachedLock.php14530644editdlrm
MemcachedStore.php63260755editdlrm
NullStore.php17250755editdlrm
RateLimiter.php28800644editdlrm
RedisLock.php15810644editdlrm
RedisStore.php71000755editdlrm
RedisTaggedCache.php47540644editdlrm
Repository.php159810755editdlrm
RetrievesMultipleKeys.php9540644editdlrm
TaggableStore.php4210644editdlrm
TaggedCache.php25100644editdlrm
TagSet.php21500644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/laravel/framework/src/Illuminate/Cache/ApcWrapper.php (1898B)
apcu = function_exists('apcu_fetch'); } /** * Get an item from the cache. * * @param string $key * @return mixed */ public function get($key) { return $this->apcu ? apcu_fetch($key) : apc_fetch($key); } /** * Store an item in the cache. * * @param string $key * @param mixed $value * @param int $seconds * @return array|bool */ public function put($key, $value, $seconds) { return $this->apcu ? apcu_store($key, $value, $seconds) : apc_store($key, $value, $seconds); } /** * Increment the value of an item in the cache. * * @param string $key * @param mixed $value * @return int|bool */ public function increment($key, $value) { return $this->apcu ? apcu_inc($key, $value) : apc_inc($key, $value); } /** * Decrement the value of an item in the cache. * * @param string $key * @param mixed $value * @return int|bool */ public function decrement($key, $value) { return $this->apcu ? apcu_dec($key, $value) : apc_dec($key, $value); } /** * Remove an item from the cache. * * @param string $key * @return bool */ public function delete($key) { return $this->apcu ? apcu_delete($key) : apc_delete($key); } /** * Remove all items from the cache. * * @return bool */ public function flush() { return $this->apcu ? apcu_clear_cache() : apc_clear_cache('user'); } }