![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ledger.corals.io/vendor/openspout/openspout/src/Common/Entity/ |
<?php namespace OpenSpout\Common\Entity; use OpenSpout\Common\Entity\Style\Style; class Row { /** * The cells in this row. * * @var Cell[] */ protected $cells = []; /** * The row style. * * @var Style */ protected $style; /** * Row height (default is 15). * * @var string */ protected $height = '15'; /** * Row constructor. * * @param Cell[] $cells * @param null|Style $style */ public function __construct(array $cells, $style) { $this ->setCells($cells) ->setStyle($style) ; } /** * @return Cell[] $cells */ public function getCells() { return $this->cells; } /** * @param Cell[] $cells * * @return Row */ public function setCells(array $cells) { $this->cells = []; foreach ($cells as $cell) { $this->addCell($cell); } return $this; } /** * @param int $cellIndex * * @return Row */ public function setCellAtIndex(Cell $cell, $cellIndex) { $this->cells[$cellIndex] = $cell; return $this; } /** * @param int $cellIndex * * @return null|Cell */ public function getCellAtIndex($cellIndex) { return $this->cells[$cellIndex] ?? null; } /** * @return Row */ public function addCell(Cell $cell) { $this->cells[] = $cell; return $this; } /** * @return int */ public function getNumCells() { // When using "setCellAtIndex", it's possible to // have "$this->cells" contain holes. if (empty($this->cells)) { return 0; } return max(array_keys($this->cells)) + 1; } /** * @return Style */ public function getStyle() { return $this->style; } /** * @param null|Style $style * * @return Row */ public function setStyle($style) { $this->style = $style ?: new Style(); return $this; } /** * @return array The row values, as array */ public function toArray() { return array_map(function (Cell $cell) { return $cell->getValue(); }, $this->cells); } /** * Set row height. * * @param string $height * * @return Row */ public function setHeight($height) { $this->height = $height; return $this; } /** * Returns row height. * * @return string */ public function getHeight() { return $this->height; } }