/home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Cache
Edit: /home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Cache/NullStore.php (2408B)
lock($name, 0, $owner);
}
/**
* Remove an item from the cache.
*
* @param string $key
* @return bool
*/
public function forget($key)
{
return true;
}
/**
* Remove all items from the cache.
*
* @return bool
*/
public function flush()
{
return true;
}
/**
* Get the cache key prefix.
*
* @return string
*/
public function getPrefix()
{
return '';
}
}