Esempio n. 1
0
 /**
  * GetCacheKey
  *
  * Gets the cache key to use for this object
  *
  * @access public
  * @return string cache key
  */
 public function GetCacheKey()
 {
     $key = parent::GetCacheKey();
     if (!empty($key)) {
         $key .= '|';
     }
     $key .= 'commit|' . $this->hash;
     return $key;
 }