mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 08:46:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			447 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			447 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Contracts\Repository\Daemon;
 | |
| 
 | |
| use Psr\Http\Message\ResponseInterface;
 | |
| 
 | |
| interface ConfigurationRepositoryInterface extends BaseRepositoryInterface
 | |
| {
 | |
|     /**
 | |
|      * Update the configuration details for the specified node using data from the database.
 | |
|      *
 | |
|      * @param array $overrides
 | |
|      * @return \Psr\Http\Message\ResponseInterface
 | |
|      */
 | |
|     public function update(array $overrides = []): ResponseInterface;
 | |
| }
 | 
