CAS_Client::_loadPGT PHP Method

_loadPGT() private method

This method reads a PGT from its Iou and deletes the corresponding storage entry.
private _loadPGT ( string $pgt_iou ) : mul
$pgt_iou string the PGT Iou
return mul The PGT corresponding to the Iou, false when not found.
    private function _loadPGT($pgt_iou)
    {
        // ensure that storage is initialized
        $this->_initPGTStorage();
        // read the PGT
        return $this->_pgt_storage->read($pgt_iou);
    }
CAS_Client