__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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\Style;
use OpenSpout\Common\Entity\Style\Style;
/**
* @internal
*/
final class PossiblyUpdatedStyle
{
private readonly Style $style;
private readonly bool $isUpdated;
public function __construct(Style $style, bool $isUpdated)
{
$this->style = $style;
$this->isUpdated = $isUpdated;
}
public function getStyle(): Style
{
return $this->style;
}
public function isUpdated(): bool
{
return $this->isUpdated;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AbstractStyleManager.php | File | 2.62 KB | 0777 |
|
| AbstractStyleRegistry.php | File | 3.04 KB | 0777 |
|
| PossiblyUpdatedStyle.php | File | 566 B | 0777 |
|
| StyleManagerInterface.php | File | 829 B | 0777 |
|
| StyleMerger.php | File | 3.84 KB | 0777 |
|