Adapter::__construct PHP Method

__construct() public method

public __construct ( Adaptee $adaptee )
$adaptee Adaptee
    public function __construct(Adaptee $adaptee)
    {
        $this->_adaptee = $adaptee;
    }

Usage Example

Example #1
0
 public function __construct($db = null)
 {
     parent::__construct($db);
     $this->_currentPage = 1;
     $this->_itemsByPage = 30;
     $this->_totalItems = 0;
     $this->_totalPages = 0;
     $this->_query = '';
     $this->_queryCount = '';
 }
All Usage Examples Of Adapter::__construct