|
- <?php
-
- namespace App\Http\Controllers\Web\QRService;
-
- use App\Http\Controllers\Web\BaseParam;
- use App\Models\ColumnName;
-
- /**
- * @property int $customerId
- * @property string $token
- * @property string|null $ticketId
- */
- class CreateTicketParam extends BaseParam
- {
- public function rules(): array
- {
- return [
- 'customer_id' => $this->numeric(),
- 'token' => $this->str(),
- 'ticket_id' => $this->str(true),
- ];
- }
- }
|