Beispiel #1
0
 private function setMaxHeightOfCellsIfHeightOfPassedCellIsGreater(Cell $node)
 {
     $height = $node->getHeight();
     if ($height > $this->maxHeightOfCells) {
         $this->maxHeightOfCells = $height;
     }
 }