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.

32 rindas
810B

  1. <?php
  2. namespace App\Http\Controllers\Web\RobotPayment\BanckCheck;
  3. use App\Http\Controllers\Web\BaseParam;
  4. /**
  5. * @property string $aid
  6. * @property string $cod
  7. * @property string $am
  8. * @property string $tx
  9. * @property string $sf
  10. * @property string $customerCode カスタム-顧客コード
  11. * @property int $entryRecordNo カスタム-定期申込レコード番号
  12. */
  13. class RegisterParam extends BaseParam
  14. {
  15. public function rules(): array
  16. {
  17. return [
  18. 'aid' => $this->str(),
  19. 'cod' => $this->str(),
  20. 'jb' => $this->str(true),
  21. 'am' => $this->str(),
  22. 'tx' => $this->str(),
  23. 'sf' => $this->numeric(),
  24. 'customer_code' => $this->str(),
  25. 'entry_record_no' => $this->numeric(),
  26. ];
  27. }
  28. }