Total Complexity | 3 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php namespace GeneaLabs\LaravelModelCaching\Traits; |
||
3 | trait CachePrefixing |
||
4 | { |
||
5 | protected function getCachePrefix() : string |
||
6 | { |
||
7 | return "genealabs:laravel-model-caching:" |
||
8 | . $this->getDatabaseConnectionName() . ":" |
||
9 | . (config("laravel-model-caching.cache-prefix") |
||
10 | ? config("laravel-model-caching.cache-prefix", "") . ":" |
||
11 | : ""); |
||
12 | } |
||
13 | |||
14 | protected function getDatabaseConnectionName() : string |
||
17 | } |
||
18 | } |
||
19 |