Guest User

Untitled

a guest
Apr 21st, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. class Application_Model_Auth {
  4.     private $authDetails = null;
  5.    
  6.     function __constructor() {
  7.         //$this->authDetails = array_merge($this->authDetails, $authDetails);
  8.         $this->authDetails = array('tablename' => 'customers',
  9.                              'username' => 'name',
  10.                              'password' => 'password',
  11.                              'salt' => 'salt');
  12.        
  13.     }
Add Comment
Please, Sign In to add comment