init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
|
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard;
|
||||
|
||||
use PhpOffice\PhpSpreadsheet\Style\Conditional;
|
||||
use PhpOffice\PhpSpreadsheet\Style\Style;
|
||||
|
||||
interface WizardInterface
|
||||
{
|
||||
public function getCellRange(): string;
|
||||
|
||||
public function setCellRange(string $cellRange): void;
|
||||
|
||||
public function getStyle(): Style;
|
||||
|
||||
public function setStyle(Style $style): void;
|
||||
|
||||
public function getStopIfTrue(): bool;
|
||||
|
||||
public function setStopIfTrue(bool $stopIfTrue): void;
|
||||
|
||||
public function getConditional(): Conditional;
|
||||
|
||||
public static function fromConditional(Conditional $conditional, string $cellRange = 'A1'): self;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue