2017-08-05 17:20:07 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Contracts\Repository\Daemon;
|
|
|
|
|
2018-01-05 18:27:47 -06:00
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
|
2017-08-05 17:20:07 -05:00
|
|
|
interface ConfigurationRepositoryInterface extends BaseRepositoryInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Update the configuration details for the specified node using data from the database.
|
|
|
|
*
|
2017-08-21 22:10:48 -05:00
|
|
|
* @param array $overrides
|
2017-08-05 17:20:07 -05:00
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*/
|
2018-01-05 18:27:47 -06:00
|
|
|
public function update(array $overrides = []): ResponseInterface;
|
2017-08-05 17:20:07 -05:00
|
|
|
}
|