コード例 #1
0
ファイル: user.php プロジェクト: Peilin-Yang/reproducibleIR
 function __construct($db)
 {
     parent::__construct();
     $this->_db = $db;
 }
コード例 #2
0
ファイル: Password.php プロジェクト: Trideon/gigolo
 public function __construct($plaintext, $encrypted)
 {
     $this->RetiredPasswordEncryption = new RetiredPasswordEncryption();
     parent::__construct($plaintext, $encrypted);
 }
コード例 #3
0
ファイル: user.php プロジェクト: WSIContractor/Simplex
 function __construct($conn)
 {
     parent::__construct();
     $this->_db = $conn;
 }
コード例 #4
0
ファイル: user.php プロジェクト: JairZijp/guidefinder
 function __construct($db, $memberID)
 {
     parent::__construct();
     $this->_db = $db;
     $this->_memberID = $memberID;
 }