コード例 #1
0
 /**
  * @return string
  */
 public function getCacheKey()
 {
     $key = $this->auth->getIssuer() . ':' . $this->auth->getCacheKey();
     if ($sub = $this->auth->getSub()) {
         $key .= ':' . $sub;
     }
     return $key;
 }