mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 06:36:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			336 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			336 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Requests\Api\Remote;
 | 
						|
 | 
						|
class InstallationDataRequest extends ServerRequest
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @return array<string, string|string[]>
 | 
						|
     */
 | 
						|
    public function rules(): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'successful' => 'present|boolean',
 | 
						|
            'reinstall' => 'sometimes|boolean',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |