| 1 | <?php namespace Comodojo\Cache\Components; |
||
| 23 | trait NamespaceTrait { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Determine the current cache scope (default: GLOBAL) |
||
| 27 | * |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | protected $cache_namespace = "GLOBAL"; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | 87 | public function getNamespace() { |
|
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | 22 | public function setNamespace($namespace=null) { |
|
| 63 | |||
| 64 | } |
||
| 65 |