19 lines
470 B
PHP
19 lines
470 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Contracts\Repository\Daemon;
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
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;
|
|
}
|