Ejemplo n.º 1
0
 /**
  * Get namespace 
  * 
  * @return string
  */
 protected function getNamespace()
 {
     $namespace = empty($this->options['namespace']) ? '' : $this->options['namespace'] . '_';
     if (isset($this->options['original'])) {
         $namespace .= \Includes\Decorator\Utils\CacheManager::getDataCacheSuffix($this->options['original']);
     } else {
         $namespace .= \Includes\Decorator\Utils\CacheManager::getDataCacheSuffix();
     }
     return $namespace;
 }