This commit introduces Row and Cell entities, that will replace the arrays passed in previously. It also adds support for Cell styling (instead of Row styling only).
42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Box\Spout\Writer\Common\Manager;
|
|
|
|
use Box\Spout\Writer\Common\Entity\Row;
|
|
use Box\Spout\Writer\Common\Entity\Worksheet;
|
|
|
|
/**
|
|
* Interface WorksheetManagerInterface
|
|
* Inteface for worksheet managers, providing the generic interfaces to work with worksheets.
|
|
*/
|
|
interface WorksheetManagerInterface
|
|
{
|
|
/**
|
|
* Adds a row to the worksheet.
|
|
*
|
|
* @param Worksheet $worksheet The worksheet to add the row to
|
|
* @param Row $row The row to be added
|
|
* @throws \Box\Spout\Common\Exception\IOException If the data cannot be written
|
|
* @throws \Box\Spout\Common\Exception\InvalidArgumentException If a cell value's type is not supported
|
|
* @return void
|
|
*/
|
|
public function addRow(Worksheet $worksheet, Row $row);
|
|
|
|
/**
|
|
* Prepares the worksheet to accept data
|
|
*
|
|
* @param Worksheet $worksheet The worksheet to start
|
|
* @throws \Box\Spout\Common\Exception\IOException If the sheet data file cannot be opened for writing
|
|
* @return void
|
|
*/
|
|
public function startSheet(Worksheet $worksheet);
|
|
|
|
/**
|
|
* Closes the worksheet
|
|
*
|
|
* @param Worksheet $worksheet
|
|
* @return void
|
|
*/
|
|
public function close(Worksheet $worksheet);
|
|
}
|