Insane number of changes required to get the build to post

This commit is contained in:
Dane Everitt
2019-11-24 20:19:31 -08:00
parent 547e8840e2
commit 2af653733c
12 changed files with 111 additions and 649 deletions

View File

@@ -2,6 +2,7 @@
namespace Pterodactyl\Repositories\Wings;
use BadMethodCallException;
use Webmozart\Assert\Assert;
use Pterodactyl\Models\Server;
use GuzzleHttp\Exception\TransferException;
@@ -69,4 +70,30 @@ class DaemonServerRepository extends DaemonRepository
throw new DaemonConnectionException($exception);
}
}
/**
* Delete a server from the daemon.
*/
public function delete(): void
{
throw new BadMethodCallException('Method is not implemented.');
}
/**
* Reinstall a server on the daemon.
*/
public function reinstall(): void
{
throw new BadMethodCallException('Method is not implemented.');
}
public function suspend(): void
{
throw new BadMethodCallException('Method is not implemented.');
}
public function unsuspend(): void
{
throw new BadMethodCallException('Method is not implemented.');
}
}