コード例 #1
0
ファイル: Worksheet.php プロジェクト: bestgoodz/toko-baju
 /**
  * Sort collection of cells
  *
  * @return Worksheet
  */
 public function sortCellCollection()
 {
     if (!is_null($this->_cellCollection)) {
         return $this->_cellCollection->getSortedCellList();
     }
     return array();
 }
コード例 #2
0
ファイル: Worksheet.php プロジェクト: kameshwariv/testexample
 /**
  * Sort collection of cells
  *
  * @return Worksheet
  */
 public function sortCellCollection()
 {
     if ($this->cellCollection !== null) {
         return $this->cellCollection->getSortedCellList();
     }
     return array();
 }