예제 #1
0
파일: User.php 프로젝트: markwu/simpleid
 public function offsetExists($offset)
 {
     switch ($offset) {
         case 'uid':
             return true;
             break;
         case 'identity':
             return $this->hasLocalOpenIDIdentity();
             break;
         default:
             return parent::offsetExists($offset);
     }
 }