misc_pterodactyl-panel/app/Contracts/Repository/Daemon/ConfigurationRepositoryInterface.php

17 lines
447 B
PHP
Raw Normal View History

<?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.
*
2017-08-22 03:10:48 +00:00
* @param array $overrides
* @return \Psr\Http\Message\ResponseInterface
*/
public function update(array $overrides = []): ResponseInterface;
}