init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
18
lib/PhpSpreadsheet/Cell/AddressRange.php
Normal file
18
lib/PhpSpreadsheet/Cell/AddressRange.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
namespace PhpOffice\PhpSpreadsheet\Cell;
|
||||
|
||||
interface AddressRange
|
||||
{
|
||||
public const MAX_ROW = 1048576;
|
||||
|
||||
public const MAX_COLUMN = 'XFD';
|
||||
|
||||
public const MAX_COLUMN_INT = 16384;
|
||||
|
||||
public function from(): mixed;
|
||||
|
||||
public function to(): mixed;
|
||||
|
||||
public function __toString(): string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue