1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-13 03:14:03 +00:00

minor code updates

This commit is contained in:
Samuel Štancl 2022-08-02 04:21:03 +02:00
parent d0baabbc9d
commit e9b6de78b2
3 changed files with 19 additions and 27 deletions

View file

@ -26,7 +26,7 @@ class CacheManager extends BaseCacheManager
}
$names = $parameters[0];
$names = (array) $names; // cache()->tags('foo') https://laravel.com/docs/5.7/cache#removing-tagged-cache-items
$names = (array) $names; // cache()->tags('foo') https://laravel.com/docs/9.x/cache#removing-tagged-cache-items
return $this->store()->tags(array_merge($tags, $names));
}