CAS_Client::_storePGT PHP 메소드

_storePGT() 개인적인 메소드

This method stores a PGT. Halts on error.
private _storePGT ( string $pgt, string $pgt_iou ) : void
$pgt string the PGT to store
$pgt_iou string its corresponding Iou
리턴 void
    private function _storePGT($pgt, $pgt_iou)
    {
        // ensure that storage is initialized
        $this->_initPGTStorage();
        // writes the PGT
        $this->_pgt_storage->write($pgt, $pgt_iou);
    }
CAS_Client