« Back to History
CurrencyNegative.php
|
20260721_154034.php
Initial Bulk Import
Copy Code
<?php namespace PhpOffice\PhpSpreadsheet\Style\NumberFormat\Wizard; enum CurrencyNegative { case minus; case redMinus; case parentheses; case redParentheses; public function start(): string { return match ($this) { self::minus, self::redMinus => '-', self::parentheses, self::redParentheses => '\(', }; } public function end(): string { return match ($this) { self::minus, self::redMinus => '', self::parentheses, self::redParentheses => '\)', }; } public function color(): string { return match ($this) { self::redParentheses, self::redMinus => '[Red]', self::parentheses, self::minus => '', }; } }