Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelsasakisushi.meumercado.app
/
vendor
/
box
/
spout
/
src
/
Spout
/
Writer
/
Common
/
Manager
/
Editing: RowManager.php
<?php namespace Box\Spout\Writer\Common\Manager; use Box\Spout\Common\Entity\Row; class RowManager { /** * Detect whether a row is considered empty. * An empty row has all of its cells empty. * * @param Row $row * @return bool */ public function isEmpty(Row $row) { foreach ($row->getCells() as $cell) { if (!$cell->isEmpty()) { return false; } } return true; } }
Save
Cancel