You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }