Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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