領収証発行サービス
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.

24 lines
575B

  1. <?php
  2. namespace App\Http\Controllers\Web\Custom\HelloTechno;
  3. use App\Http\Controllers\Web\BaseParam;
  4. use App\Util\Custom\HelloTechno\API;
  5. /**
  6. * @property ?string $customerCode
  7. * @property ?string $parkingManagementCode
  8. * @property ?string $parkingName
  9. */
  10. class ParkingsParam extends BaseParam
  11. {
  12. public function rules(): array
  13. {
  14. return [
  15. API::CONDITION_CUSTOMER_CODDE => $this->str(true),
  16. API::CONDITION_PARKING_MANAGEMENT_CODDE => $this->str(true),
  17. API::CONDITION_PARKING_NAME => $this->str(true)
  18. ];
  19. }
  20. }