8 lines
129 B
PHP
8 lines
129 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheet\Style\NumberFormat\Wizard;
|
|
|
|
interface Wizard
|
|
{
|
|
public function format(): string;
|
|
}
|