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