Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Request.php 398 B
<?php

/**
 * Base class for all SAML 2 request messages.
 *
 * Implements samlp:RequestAbstractType. All of the elements in that type is
 * stored in the SAML2_Message class, and this class is therefore empty. It
 * is included mainly to make it easy to separate requests from responses.
 *
 * @package simpleSAMLphp
 * @version $Id$
 */
abstract class SAML2_Request extends SAML2_Message {

}

?>