28 lines
		
	
	
		
			650 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			650 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Pterodactyl - Panel
 | 
						|
 * Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
 | 
						|
 *
 | 
						|
 * This software is licensed under the terms of the MIT license.
 | 
						|
 * https://opensource.org/licenses/MIT
 | 
						|
 */
 | 
						|
 | 
						|
namespace Pterodactyl\Http\Requests\Admin\Node;
 | 
						|
 | 
						|
use Pterodactyl\Http\Requests\Admin\AdminFormRequest;
 | 
						|
 | 
						|
class AllocationFormRequest extends AdminFormRequest
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function rules()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'allocation_ip' => 'required|string',
 | 
						|
            'allocation_alias' => 'sometimes|nullable|string|max:191',
 | 
						|
            'allocation_ports' => 'required|array',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |