|
- <?php
-
- namespace App\Http\Controllers\Web\Custom\HelloTechno;
-
- use App\Http\Controllers\Web\BaseParam;
- use App\Util\Custom\HelloTechno\API;
-
- /**
- * @property ?string $customerCode
- * @property ?string $parkingManagementCode
- * @property ?string $parkingName
- */
- class ParkingsParam extends BaseParam
- {
- public function rules(): array
- {
- return [
- API::CONDITION_CUSTOMER_CODDE => $this->str(true),
- API::CONDITION_PARKING_MANAGEMENT_CODDE => $this->str(true),
- API::CONDITION_PARKING_NAME => $this->str(true)
- ];
- }
- }
|