You are here

public function PHPExcel_HashTable::__construct in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/HashTable.php \PHPExcel_HashTable::__construct()

* Create a new PHPExcel_HashTable * *

Parameters

PHPExcel_IComparable[] $pSource Optional source array to create HashTable from: * @throws PHPExcel_Exception

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/HashTable.php, line 58

Class

PHPExcel_HashTable
PHPExcel_HashTable

Code

public function __construct($pSource = null) {
  if ($pSource !== NULL) {

    // Create HashTable
    $this
      ->addFromSource($pSource);
  }
}