Add ability to switch between new and existing daemon
This commit is contained in:
parent
281337943f
commit
15d38ce823
8 changed files with 466 additions and 5 deletions
24
app/Repositories/Wings/ConfigurationRepository.php
Normal file
24
app/Repositories/Wings/ConfigurationRepository.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
/**
|
||||
* Pterodactyl - Panel
|
||||
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
||||
*
|
||||
* This software is licensed under the terms of the MIT license.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
namespace Pterodactyl\Repositories\Wings;
|
||||
|
||||
use Pterodactyl\Exceptions\PterodactylException;
|
||||
use Pterodactyl\Contracts\Repository\Daemon\ConfigurationRepositoryInterface;
|
||||
|
||||
class ConfigurationRepository extends BaseRepository implements ConfigurationRepositoryInterface
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function update(array $overrides = [])
|
||||
{
|
||||
throw new PterodactylException('This has not yet been configured.');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue