User::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        $this->users = getJSON('users.php');
        $this->actives = getJSON('active.php');
    }

Usage Example

Example #1
0
 /**
  * Tests User->__construct()
  */
 public function test__construct()
 {
     $this->User->__construct();
     if (get_class($this->User) != 'User') {
         $this->fail();
     }
 }
All Usage Examples Of User::__construct