__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace OpenSpout\Writer\Common\Manager;
use OpenSpout\Common\Entity\Row;
use OpenSpout\Common\Exception\InvalidArgumentException;
use OpenSpout\Common\Exception\IOException;
use OpenSpout\Writer\Common\Entity\Worksheet;
/**
* @internal
*/
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 IOException If the data cannot be written
* @throws InvalidArgumentException If a cell value's type is not supported
*/
public function addRow(Worksheet $worksheet, Row $row): void;
/**
* Prepares the worksheet to accept data.
*
* @param Worksheet $worksheet The worksheet to start
*
* @throws IOException If the sheet data file cannot be opened for writing
*/
public function startSheet(Worksheet $worksheet): void;
/**
* Closes the worksheet.
*/
public function close(Worksheet $worksheet): void;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Style | Folder | 0777 |
|
|
| AbstractWorkbookManager.php | File | 9.24 KB | 0777 |
|
| RegisteredStyle.php | File | 675 B | 0777 |
|
| SheetManager.php | File | 4.39 KB | 0777 |
|
| WorkbookManagerInterface.php | File | 2.28 KB | 0777 |
|
| WorksheetManagerInterface.php | File | 1.07 KB | 0777 |
|