mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-16 11:24:04 +00:00
Add support for global cache (#78)
This commit is contained in:
parent
d0d1f6930b
commit
92ebc1f01b
5 changed files with 65 additions and 2 deletions
13
src/GlobalCacheFacade.php
Normal file
13
src/GlobalCacheFacade.php
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace Stancl\Tenancy;
|
||||
|
||||
use Illuminate\Support\Facades\Facade;
|
||||
|
||||
class GlobalCacheFacade extends Facade
|
||||
{
|
||||
protected static function getFacadeAccessor()
|
||||
{
|
||||
return 'globalCache';
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue