Fix failing test suite

This commit is contained in:
Dane Everitt 2017-10-08 20:57:59 -05:00
parent 159ad3079f
commit 864513c44b
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -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.');
} }