1<?php 2 3namespace Pterodactyl\Http\Requests\Api\Client\Servers\Network; 4 5class SetPrimaryAllocationRequest extends UpdateAllocationRequest 6{ 7 public function rules(): array 8 { 9 return []; 10 } 11} 12 13