Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RP_authResponseInp.class.php « packet « src « prods « irodsphp « 3rdparty « files_external « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23d754df0acff8989bacd99fabf0115191d14393 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

require_once(dirname(__FILE__) . "/../autoload.inc.php");
class RP_authResponseInp extends RODSPacket
{
    public function __construct($response = "", $username = "")
    {
        $packlets = array("response" => $response, "username" => $username);
        parent::__construct("authResponseInp_PI", $packlets);
    }

}

?>