您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

AdjustmentScope.php 225B

1234567891011121314
  1. <?php
  2. namespace App\Enums\Accounting;
  3. enum AdjustmentScope: string
  4. {
  5. case Product = 'product';
  6. case Service = 'service';
  7. public function getLabel(): ?string
  8. {
  9. return translate($this->name);
  10. }
  11. }