__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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\Common\Entity\Style;
final class Border
{
public const LEFT = 'left';
public const RIGHT = 'right';
public const TOP = 'top';
public const BOTTOM = 'bottom';
public const STYLE_NONE = 'none';
public const STYLE_SOLID = 'solid';
public const STYLE_DASHED = 'dashed';
public const STYLE_DOTTED = 'dotted';
public const STYLE_DOUBLE = 'double';
public const WIDTH_THIN = 'thin';
public const WIDTH_MEDIUM = 'medium';
public const WIDTH_THICK = 'thick';
/** @var array<string, BorderPart> */
private array $parts;
public function __construct(BorderPart ...$borderParts)
{
foreach ($borderParts as $borderPart) {
$this->parts[$borderPart->getName()] = $borderPart;
}
}
public function getPart(string $name): ?BorderPart
{
return $this->parts[$name] ?? null;
}
/**
* @return array<string, BorderPart>
*/
public function getParts(): array
{
return $this->parts;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Border.php | File | 1.04 KB | 0777 |
|
| BorderPart.php | File | 2.19 KB | 0777 |
|
| CellAlignment.php | File | 685 B | 0777 |
|
| CellVerticalAlignment.php | File | 931 B | 0777 |
|
| Color.php | File | 2.58 KB | 0777 |
|
| Style.php | File | 10.91 KB | 0777 |
|