swayok / alternative-laravel-cache

Replacements for Laravel's redis and file cache stores that properly implement tagging idea
MIT License
169 stars 26 forks source link

fix: Add result return for TaggedCache methods #35

Closed plastique closed 2 years ago

plastique commented 2 years ago

No result return when calling methods of Tagged cache. Example:

Cache::tags(['tag1', 'tag2'])->put($key, $data, $ttl); // Null returned
Cache::put($key, $data, $ttl); // Bool returned