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