Fix failing test suite
This commit is contained in:
parent
159ad3079f
commit
864513c44b
1 changed files with 2 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
namespace Pterodactyl\Repositories\Wings;
|
namespace Pterodactyl\Repositories\Wings;
|
||||||
|
|
||||||
|
use Psr\Http\Message\ResponseInterface;
|
||||||
use Pterodactyl\Exceptions\PterodactylException;
|
use Pterodactyl\Exceptions\PterodactylException;
|
||||||
use Pterodactyl\Contracts\Repository\Daemon\ServerRepositoryInterface;
|
use Pterodactyl\Contracts\Repository\Daemon\ServerRepositoryInterface;
|
||||||
|
|
||||||
|
@ -17,7 +18,7 @@ class ServerRepository extends BaseRepository implements ServerRepositoryInterfa
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function create($id, array $overrides = [], $start = false)
|
public function create(array $structure, array $overrides = []): ResponseInterface
|
||||||
{
|
{
|
||||||
throw new PterodactylException('This feature is not yet implemented.');
|
throw new PterodactylException('This feature is not yet implemented.');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue