__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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\Style\Style;
/**
* Allow to know if this style must replace actual row style.
*
* @internal
*/
final class RegisteredStyle
{
private readonly Style $style;
private readonly bool $isMatchingRowStyle;
public function __construct(Style $style, bool $isMatchingRowStyle)
{
$this->style = $style;
$this->isMatchingRowStyle = $isMatchingRowStyle;
}
public function getStyle(): Style
{
return $this->style;
}
public function isMatchingRowStyle(): bool
{
return $this->isMatchingRowStyle;
}
}
| 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 |
|